mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-18 21:09:57 +08:00
15 lines
198 B
C
15 lines
198 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#ifdef KR_headers
|
||
|
extern double erfc();
|
||
|
|
||
|
double G77_derfc_0 (x) doublereal *x;
|
||
|
#else
|
||
|
extern double erfc(double);
|
||
|
|
||
|
double G77_derfc_0 (doublereal *x)
|
||
|
#endif
|
||
|
{
|
||
|
return( erfc(*x) );
|
||
|
}
|