| 1234567891011121314151617181920 | #include "f2c.h"#ifdef KR_headersdouble exp();double r_exp(x) real *x;#else#undef abs#include "math.h"#ifdef __cplusplusextern "C" {#endifdouble r_exp(real *x)#endif{return( exp(*x) );}#ifdef __cplusplus}#endif
 |