Enabled the regex code in the library. We know have POSIX regular expression
[unix-history] / lib / libF77 / erfc_.c
CommitLineData
547779a8
WH
1#include "f2c.h"
2
3#ifdef KR_headers
4double erfc();
5double erfc_(x) real *x;
6#else
7extern double erfc(double);
8double erfc_(real *x)
9#endif
10{
11return( erfc(*x) );
12}