summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcls%seawood.org <devnull@localhost>1999-07-19 02:50:05 +0000
committercls%seawood.org <devnull@localhost>1999-07-19 02:50:05 +0000
commit493871c06e3ab732db61df3eea395bb4fccfc936 (patch)
tree162f03f961435fffe943e9062bddb2bd4ac9f8c0
parent09eed31bddeb56408e7ad73f8110a27c12533967 (diff)
downloadnspr-hg-493871c06e3ab732db61df3eea395bb4fccfc936.tar.gz
Changed a couple of __MINGW32__ ifdefs into __GNUC__ ones. mingw32's new runtime (19990715) has some special ifdefs in <windows.h> so include that by default rather than <windef.h>
-rw-r--r--pr/include/prlong.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/include/prlong.h b/pr/include/prlong.h
index 6d615231..b7000692 100644
--- a/pr/include/prlong.h
+++ b/pr/include/prlong.h
@@ -60,7 +60,7 @@ PR_EXTERN(PRInt64) LL_Zero(void);
#if PR_BYTES_PER_LONG == 8
#define LL_INIT(hi, lo) ((hi ## L << 32) + lo ## L)
-#elif (defined(WIN32) || defined(WIN16)) && !defined(__MINGW32__)
+#elif (defined(WIN32) || defined(WIN16)) && !defined(__GNUC__)
#define LL_INIT(hi, lo) ((hi ## i64 << 32) + lo ## i64)
#else
#define LL_INIT(hi, lo) ((hi ## LL << 32) + lo ## LL)