date and time created 83/01/21 11:11:31 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_atan.c
CommitLineData
9705cab9
DW
1/*
2 * "@(#)d_atan.c 1.1"
3 */
4
5double d_atan(x)
6double *x;
7{
8double atan();
9return( atan(*x) );
10}