mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
7 lines
131 B
C
7 lines
131 B
C
|
#include "headers/lgammad2.h"
|
||
|
|
||
|
static __inline double _lgamma(double x)
|
||
|
{
|
||
|
return spu_extract(_lgammad2(spu_promote(x, 0)), 0);
|
||
|
}
|