コード例 #1
0
ファイル: s_erf.c プロジェクト: 32bitmicro/newlib-nano-1.0
double erfc(double x)
{
  return _erfc(x);
}
コード例 #2
0
ファイル: floathmath.c プロジェクト: 0pq76r/SpeedCrunch
char
float_erfc(floatnum x, int digits)
{
  return chckmathparam(x, digits)? _erfc(x, digits) : 0;
}