Retro68/gcc/newlib/libm/machine/spu/headers/erfc.h
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

7 lines
125 B
C

#include "headers/erfcd2.h"
static __inline double _erfc(double x)
{
return spu_extract(_erfcd2(spu_promote(x, 0)), 0);
}