mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 12:29:32 +08:00
7 lines
122 B
C
7 lines
122 B
C
|
#include "headers/expd2.h"
|
||
|
|
||
|
static __inline double _exp(double x)
|
||
|
{
|
||
|
return spu_extract(_expd2(spu_promote(x, 0)), 0);
|
||
|
}
|