From f30b0d3045889de7d2bb1543accb09172015abb8 Mon Sep 17 00:00:00 2001 From: Alexander Light Date: Thu, 26 Feb 2015 16:01:30 -0500 Subject: [PATCH] Fix build for i386 This would not build on i386 due to a missing include. --- src/s_cbrtl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s_cbrtl.c b/src/s_cbrtl.c index f88c922..435a0a1 100644 --- a/src/s_cbrtl.c +++ b/src/s_cbrtl.c @@ -24,7 +24,7 @@ #include "fpmath.h" #include "math_private.h" -#if defined(_WIN32) && defined(__i386__) +#if defined(__i386__) #include "i387/bsd_ieeefp.h" #endif