mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-21 15:10:11 +08:00
10 lines
125 B
C
10 lines
125 B
C
#include "f2c.h"
|
|
|
|
#undef abs
|
|
#include <math.h>
|
|
double
|
|
d_atn2 (doublereal * x, doublereal * y)
|
|
{
|
|
return (atan2 (*x, *y));
|
|
}
|