commit
eb34681ce8
@ -164,10 +164,8 @@ namespace nv
|
|||||||
{
|
{
|
||||||
#if NV_OS_WIN32 || NV_OS_XBOX
|
#if NV_OS_WIN32 || NV_OS_XBOX
|
||||||
return _isnan(f) != 0;
|
return _isnan(f) != 0;
|
||||||
#elif NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_NETBSD || NV_OS_OPENBSD || NV_OS_ORBIS
|
#elif NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_NETBSD || NV_OS_OPENBSD || NV_OS_ORBIS || NV_OS_LINUX
|
||||||
return isnan(f);
|
return isnan(f);
|
||||||
#elif NV_OS_LINUX
|
|
||||||
return isnanf(f);
|
|
||||||
#else
|
#else
|
||||||
# error "isNan not supported"
|
# error "isNan not supported"
|
||||||
#endif
|
#endif
|
||||||
|
@ -8,7 +8,9 @@
|
|||||||
#include "Win32.h"
|
#include "Win32.h"
|
||||||
#elif NV_OS_UNIX
|
#elif NV_OS_UNIX
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
#if !NV_OS_LINUX
|
||||||
#include <sys/sysctl.h>
|
#include <sys/sysctl.h>
|
||||||
|
#endif
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#elif NV_OS_DARWIN
|
#elif NV_OS_DARWIN
|
||||||
#import <stdio.h>
|
#import <stdio.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user