POSIX not _POSIX

This commit is contained in:
Nicholas Hastings 2013-10-06 11:10:49 -04:00
parent 39c2727496
commit 714edfda3b
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
#pragma once #pragma once
#endif #endif
#if !defined(NO_MALLOC_OVERRIDE) && defined(_POSIX) #if !defined(NO_MALLOC_OVERRIDE) && defined(POSIX)
#define NO_MALLOC_OVERRIDE #define NO_MALLOC_OVERRIDE
#endif #endif

View File

@ -11,7 +11,7 @@
// to include this potentially multiple times (since we can deactivate debugging // to include this potentially multiple times (since we can deactivate debugging
// by including memdbgoff.h) // by including memdbgoff.h)
#if !defined(NO_MALLOC_OVERRIDE) && defined(_POSIX) #if !defined(NO_MALLOC_OVERRIDE) && defined(POSIX)
#define NO_MALLOC_OVERRIDE #define NO_MALLOC_OVERRIDE
#endif #endif