got one too many in POSIX signal conversion
[unix-history] / usr / src / usr.bin / f77 / libF77 / r_asin.c
CommitLineData
6e6d3f33 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_asin.c 5.2 %G%
6e6d3f33
DW
7 */
8
46452188 9float r_asin(x)
6e6d3f33
DW
10float *x;
11{
12double asin();
13return( asin(*x) );
14}