Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
libf2c
/
libF77
/
h_abs.c
blob: 9db19ca34e9506cda508a72c76f056b53d796fbb [
file
] [
log
] [
blame
]
#include
"f2c.h"
shortint
h_abs
(
shortint
*
x
)
{
if
(*
x
>=
0
)
return
(*
x
);
return
(-*
x
);
}