don't use 'cc -f' with compilers that don't do automatic double to
[unix-history] / usr / src / usr.bin / f77 / libF77 / r_atan.c
CommitLineData
ccf25287 1/*
72a88780
RE
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
46452188 6 * @(#)r_atan.c 5.2 %G%
ccf25287
DW
7 */
8
46452188 9float r_atan(x)
ccf25287
DW
10float *x;
11{
12double atan();
13return( atan(*x) );
14}