freebsd-dev/contrib/libf2c/libF77/i_abs.c

10 lines
98 B
C
Raw Normal View History

1999-09-18 10:51:31 +00:00
#include "f2c.h"
2003-07-11 03:42:19 +00:00
integer
i_abs (integer * x)
1999-09-18 10:51:31 +00:00
{
2003-07-11 03:42:19 +00:00
if (*x >= 0)
return (*x);
return (-*x);
1999-09-18 10:51:31 +00:00
}