81fea2b1d1
"libf2c" directory. From-SVN: r17568
13 lines
147 B
C
13 lines
147 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
integer i_abs(x) integer *x;
|
|
#else
|
|
integer i_abs(integer *x)
|
|
#endif
|
|
{
|
|
if(*x >= 0)
|
|
return(*x);
|
|
return(- *x);
|
|
}
|