2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2024-12-22 16:49:44 +08:00
gcc/libf2c/libF77/r_asin.c

14 lines
166 B
C
Raw Normal View History

#include "f2c.h"
#ifdef KR_headers
double asin();
double r_asin(x) real *x;
#else
#undef abs
#include <math.h>
double r_asin(real *x)
#endif
{
return( asin(*x) );
}