mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-28 06:14:10 +08:00
14 lines
178 B
C
14 lines
178 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#ifdef KR_headers
|
||
|
double acos();
|
||
|
double d_acos(x) doublereal *x;
|
||
|
#else
|
||
|
#undef abs
|
||
|
#include <math.h>
|
||
|
double d_acos(doublereal *x)
|
||
|
#endif
|
||
|
{
|
||
|
return( acos(*x) );
|
||
|
}
|