mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
Mac OS X already defines iswdigit, so don't define it again on this host OS.
svn path=/trunk/; revision=28412
This commit is contained in:
@@ -28,10 +28,13 @@
|
||||
#include <ctype.h>
|
||||
#define _finite __finite
|
||||
#define _isnan __isnan
|
||||
|
||||
#ifndef __APPLE__
|
||||
inline int iswdigit ( wchar_t c )
|
||||
{
|
||||
return ( c >= L'0' && c <= L'9' );
|
||||
}
|
||||
#endif
|
||||
#endif//WIN32
|
||||
|
||||
#if defined(__FreeBSD__) || defined(__APPLE__)
|
||||
|
||||
Reference in New Issue
Block a user