mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
7 lines
130 B
C
7 lines
130 B
C
|
#include "headers/sind2.h"
|
||
|
|
||
|
static __inline double _sin(double angle)
|
||
|
{
|
||
|
return spu_extract(_sind2(spu_promote(angle, 0)), 0);
|
||
|
}
|