mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 15:57:17 +08:00
9 lines
118 B
C
9 lines
118 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#undef abs
|
||
|
#include <math.h>
|
||
|
double r_int(real *x)
|
||
|
{
|
||
|
return( (*x>0) ? floor(*x) : -floor(- *x) );
|
||
|
}
|