corrections by Bob Corbett. DLW
[unix-history] / usr / src / usr.bin / f77 / libF77 / derfc_.c
CommitLineData
d1ae816f
DW
1/*
2 * "@(#)derfc_.c 1.1"
3 */
4
5double derfc_(x)
6double *x;
7{
8double erfc();
9
10return( erfc(*x) );
11}