From c9d724b6da2ae3aceae3896a669420ff3c804f0d Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 22 Jan 2013 17:19:36 +0000 Subject: replace NT with proper macro: _WIN32 (http://msdn.microsoft.com/en-us/library/ff540443.aspx) svn path=/trunk/externals/miXed/; revision=16956 --- shared/common/mifi.c | 4 ++-- shared/common/port.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'shared/common') diff --git a/shared/common/mifi.c b/shared/common/mifi.c index 4da9f55..44b9483 100644 --- a/shared/common/mifi.c +++ b/shared/common/mifi.c @@ -2,7 +2,7 @@ * For information on usage and redistribution, and for a DISCLAIMER OF ALL * WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ -#ifdef NT +#ifdef _WIN32 #include #else #include @@ -27,7 +27,7 @@ typedef u_int16_t uint16; #ifndef uchar typedef u_int8_t uchar; #endif -#elif defined(NT) +#elif defined(_WIN32) #ifndef uint32 typedef unsigned long uint32; #endif diff --git a/shared/common/port.c b/shared/common/port.c index ffce677..6fdcaef 100644 --- a/shared/common/port.c +++ b/shared/common/port.c @@ -10,7 +10,7 @@ #ifdef UNIX #include #endif -#ifdef NT +#ifdef _WIN32 #include #endif #include -- cgit v1.2.1