System V IPC code from Danny Boulet, chewed on a bit by the NetBSD group
[unix-history] / lib / libF77 / derfc_.c
CommitLineData
547779a8
WH
1#include "f2c.h"
2
3#ifdef KR_headers
4extern double erfc();
5
6double derfc_(x) doublereal *x;
7#else
8extern double erfc(double);
9
10double derfc_(doublereal *x)
11#endif
12{
13return( erfc(*x) );
14}