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