From: Peter Johnson Date: Sun, 8 Oct 2006 00:53:10 +0000 (-0000) Subject: util.h: Use same workarounds for mingw32 as for the GNU C library. X-Git-Tag: v0.6.0~134 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=337dcd9b641bc1667e9bc15dc0bba96346c7a2b9;p=yasm util.h: Use same workarounds for mingw32 as for the GNU C library. svn path=/trunk/yasm/; revision=1645 --- diff --git a/util.h b/util.h index 6a9ebddc..01b200f9 100644 --- a/util.h +++ b/util.h @@ -34,7 +34,7 @@ #include #endif -#ifdef HAVE_GNU_C_LIBRARY +#if defined(HAVE_GNU_C_LIBRARY) || defined(__MINGW32__) /* Work around glibc's non-defining of certain things when using gcc -ansi */ # ifdef __STRICT_ANSI__