Doxygen Source Code Documentation
d_int.c File Reference
#include "f2c.h"#include "mathh.h"Go to the source code of this file.
Functions | |
| double | d_int (doublereal *x) |
Function Documentation
|
|
Definition at line 9 of file d_int.c. Referenced by iran_(), pareval_(), and parevec_().
00011 {
00012 return( (*x>0) ? floor(*x) : -floor(- *x) );
00013 }
|