ack/lang/fortran/lib/libF77/d_atn2.c

9 lines
100 B
C
Raw Normal View History

1991-10-07 16:59:33 +00:00
#include "f2c.h"
double d_atn2(x,y)
doublereal *x, *y;
{
double atan2();
return( atan2(*x,*y) );
}