* langhooks.c: Fix formatting.
[official-gcc.git] / libf2c / libF77 / r_atan.c
blob36479c915b05e3c77f8b4debe7a9e22cda765b33
1 #include "f2c.h"
3 #ifdef KR_headers
4 double atan();
5 double r_atan(x) real *x;
6 #else
7 #undef abs
8 #include <math.h>
9 double r_atan(real *x)
10 #endif
12 return( atan(*x) );