mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-17 20:09:21 +08:00
7 lines
122 B
C
7 lines
122 B
C
|
#include "headers/erfd2.h"
|
||
|
|
||
|
static __inline double _erf(double x)
|
||
|
{
|
||
|
return spu_extract(_erfd2(spu_promote(x, 0)), 0);
|
||
|
}
|