~ chicken-core (chicken-5) ff6459cafa60665ced7835039d39cb41cc6a3f30


commit ff6459cafa60665ced7835039d39cb41cc6a3f30
Author:     Peter Bex <peter@more-magic.net>
AuthorDate: Sun Aug 20 16:38:19 2017 +0200
Commit:     Evan Hanson <evhan@foldling.org>
CommitDate: Mon Aug 21 09:39:46 2017 +1200

    Remove MingW isnormal() workaround; we no longer use this function in our runtime
    
    Signed-off-by: Evan Hanson <evhan@foldling.org>

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
Trap