home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
INFO
/
FORTRAN
/
F2C_SRC.ZIP
/
F2C
/
LIBF77
/
R_INT.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-06-10
|
118 b
|
10 lines
#include "f2c.h"
double r_int(x)
real *x;
{
double floor();
return( (*x>0) ? floor(*x) : -floor(- *x) );
}