소스 검색

Merge pull request #88 from scialex/fix-i386

Fix build for x86 32 bit targets
Viral B. Shah 10 년 전
부모
커밋
efcb36079a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/s_cbrtl.c

+ 1 - 1
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