* toplev.h: Remove forward def of tree_node, rtx_def.
[official-gcc.git] / libf2c / libF77 / d_exp.c
blobbe12fd70551e69c96489e6674025df50cf5716b8
1 #include "f2c.h"
3 #ifdef KR_headers
4 double exp();
5 double d_exp(x) doublereal *x;
6 #else
7 #undef abs
8 #include <math.h>
9 double d_exp(doublereal *x)
10 #endif
12 return( exp(*x) );