new file organization
[unix-history] / usr / src / usr.bin / f77 / libF77 / r_cos.c
CommitLineData
952e1127
DW
1/*
2 * "@(#)r_cos.c 1.1"
3 */
4
5double r_cos(x)
6float *x;
7{
8double cos();
9return( cos(*x) );
10}