Sign in
gnu
/
gcc
/
d01fc6a3172f05d1618263450c1c9f13737acf57
/
.
/
libf2c
/
libF77
/
r_abs.c
blob: 6f62724ef17a1ed6773267bb3e6f04553bfe1805 [
file
] [
log
] [
blame
]
#include
"f2c.h"
double
r_abs
(
real
*
x
)
{
if
(*
x
>=
0
)
return
(*
x
);
return
(-*
x
);
}