7 lines
130 B
C
7 lines
130 B
C
|
#include "headers/tand2.h"
|
||
|
|
||
|
static __inline double _tan(double angle)
|
||
|
{
|
||
|
return spu_extract(_tand2(spu_promote(angle, 0)), 0);
|
||
|
}
|