소스 검색

Fix build for i386

This would not build on i386 due to a missing include.
Alexander Light 10 년 전
부모
커밋
f30b0d3045
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