From 69e308ad1f4ff4313936aa9157e833749ca22be8 Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Sun, 20 Aug 2017 16:38:19 +0200 Subject: [PATCH] Remove MingW isnormal() workaround; we no longer use this function in our runtime --- chicken.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/chicken.h b/chicken.h index 6d72fcea..ce4aa9f0 100644 --- a/chicken.h +++ b/chicken.h @@ -342,12 +342,6 @@ void *alloca (); #define ___s64 C_s64 -/* Mingw's isnormal() is broken on 32bit; use GCC's builtin (see #1062) */ -#ifdef __MINGW32__ -# undef isnormal -# define isnormal __builtin_isnormal -#endif - /* Constants: */ #define C_STACK_RESERVE 0x10000 -- 2.11.0