Sign in
gnu
/
gcc
/
d01fc6a3172f05d1618263450c1c9f13737acf57
/
.
/
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
);
}