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