mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-18 04:48:55 +08:00
81fea2b1d1
"libf2c" directory. From-SVN: r17568
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) );
|
|
}
|