mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-15 04:44:33 +08:00
9 lines
100 B
C
9 lines
100 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#undef abs
|
||
|
#include <math.h>
|
||
|
double d_asin(doublereal *x)
|
||
|
{
|
||
|
return( asin(*x) );
|
||
|
}
|