1999-09-18 10:51:31 +00:00
|
|
|
#include "f2c.h"
|
|
|
|
|
|
|
|
#undef abs
|
|
|
|
#include <math.h>
|
2003-07-11 03:42:19 +00:00
|
|
|
double
|
|
|
|
d_atn2 (doublereal * x, doublereal * y)
|
1999-09-18 10:51:31 +00:00
|
|
|
{
|
2003-07-11 03:42:19 +00:00
|
|
|
return (atan2 (*x, *y));
|
1999-09-18 10:51:31 +00:00
|
|
|
}
|