From 714edfda3b2b8306259448d68ad17493101274d0 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sun, 6 Oct 2013 11:10:49 -0400 Subject: [PATCH] POSIX not _POSIX --- public/tier0/memalloc.h | 2 +- public/tier0/memdbgon.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/tier0/memalloc.h b/public/tier0/memalloc.h index b311684c..e64f6688 100644 --- a/public/tier0/memalloc.h +++ b/public/tier0/memalloc.h @@ -14,7 +14,7 @@ #pragma once #endif -#if !defined(NO_MALLOC_OVERRIDE) && defined(_POSIX) +#if !defined(NO_MALLOC_OVERRIDE) && defined(POSIX) #define NO_MALLOC_OVERRIDE #endif diff --git a/public/tier0/memdbgon.h b/public/tier0/memdbgon.h index 308b0b8b..ef9a2cfb 100644 --- a/public/tier0/memdbgon.h +++ b/public/tier0/memdbgon.h @@ -11,7 +11,7 @@ // to include this potentially multiple times (since we can deactivate debugging // by including memdbgoff.h) -#if !defined(NO_MALLOC_OVERRIDE) && defined(_POSIX) +#if !defined(NO_MALLOC_OVERRIDE) && defined(POSIX) #define NO_MALLOC_OVERRIDE #endif