mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 20:39:33 +08:00
7 lines
130 B
C
7 lines
130 B
C
|
#include "headers/cosd2.h"
|
||
|
|
||
|
static __inline double _cos(double angle)
|
||
|
{
|
||
|
return spu_extract(_cosd2(spu_promote(angle, 0)), 0);
|
||
|
}
|