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