Remove obsoleted COM_BIDIR, FIFO_TRIGGER_* and "comcontrol bidir"
[unix-history] / lib / libF77 / derfc_.c
#include "f2c.h"
#ifdef KR_headers
extern double erfc();
double derfc_(x) doublereal *x;
#else
extern double erfc(double);
double derfc_(doublereal *x)
#endif
{
return( erfc(*x) );
}