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