From f3fe57e7d862a48e445855103e7f0e9d32086bb9 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Fri, 25 Nov 2005 03:41:24 +0000 Subject: [PATCH] add a check for gcc to the constants recently added for the msvc port. They seem to cause problems on some gcc's but not mine. svn path=/trunk/; revision=19539 --- reactos/lib/crt/include/float.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/lib/crt/include/float.h b/reactos/lib/crt/include/float.h index ce575e24fb1..c26ff970911 100644 --- a/reactos/lib/crt/include/float.h +++ b/reactos/lib/crt/include/float.h @@ -91,9 +91,11 @@ #define _FPE_STACKUNDERFLOW 0x8b #define _FPE_EXPLICITGEN 0x8c /* raise( SIGFPE ); */ +#ifdef __GNUC__ #define DBL_MAX_10_EXP 308 #define S_IFIFO -1 #define UINT64_MAX 0xffffffffffffffff +#endif #ifndef RC_INVOKED