aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/d_int.c
blob: beff1e7d3781d16ee8c7826f774d60e8fa5a743d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

#ifdef KR_headers
double floor();
double d_int(x) doublereal *x;
#else
#undef abs
#include <math.h>
double d_int(doublereal *x)
#endif
{
return( (*x>0) ? floor(*x) : -floor(- *x) );
}