mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 19:49:53 +08:00
9 lines
100 B
C
9 lines
100 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#undef abs
|
||
|
#include <math.h>
|
||
|
double d_atan(doublereal *x)
|
||
|
{
|
||
|
return( atan(*x) );
|
||
|
}
|