* tree.c (make_node): Set TREE_SIDE_EFFECTS for expressions that
[official-gcc.git] / libf2c / libF77 / r_cos.c
blob5bda158cee950b498817689d257464b36bbad4d2
1 #include "f2c.h"
3 #ifdef KR_headers
4 double cos();
5 double r_cos(x) real *x;
6 #else
7 #undef abs
8 #include <math.h>
9 double r_cos(real *x)
10 #endif
12 return( cos(*x) );