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