mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 04:13:37 +00:00
fix linux builds - sorry
svn path=/trunk/; revision=19717
This commit is contained in:
@@ -24,6 +24,15 @@
|
||||
#include <assert.h>
|
||||
#include "ssprintf.h"
|
||||
|
||||
#ifndef WIN32
|
||||
#define _finite __finite
|
||||
#define _isnan __isnan
|
||||
inline int iswdigit ( wchar_t c )
|
||||
{
|
||||
return ( c >= L'0' && c <= L'9' );
|
||||
}
|
||||
#endif//WIN32
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
# define __isnan isnan
|
||||
# define __finite finite
|
||||
|
||||
Reference in New Issue
Block a user