mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
7 lines
134 B
C
7 lines
134 B
C
|
#include "headers/isnanf4.h"
|
||
|
|
||
|
static __inline unsigned int _isnanf(float x)
|
||
|
{
|
||
|
return spu_extract(_isnanf4(spu_promote(x, 0)), 0);
|
||
|
}
|