home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
sharew
/
f_2_c
/
libf77
/
i_abs.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1991-06-10
|
99 b
|
10 lines
#include "f2c.h"
integer i_abs(x)
integer *x;
{
if(*x >= 0)
return(*x);
return(- *x);
}