Author: kargl
Date: Mon Jul 30 21:58:28 2012
New Revision: 238924
URL: http://svn.freebsd.org/changeset/base/238924

Log:
  ieeefp.h is only needed on i386 class hardware.
  
  Submitted by: bde
  Approved by:  das (pre-approved)

Modified:
  head/lib/msun/src/s_cbrtl.c

Modified: head/lib/msun/src/s_cbrtl.c
==============================================================================
--- head/lib/msun/src/s_cbrtl.c Mon Jul 30 21:55:49 2012        (r238923)
+++ head/lib/msun/src/s_cbrtl.c Mon Jul 30 21:58:28 2012        (r238924)
@@ -18,7 +18,9 @@
 __FBSDID("$FreeBSD$");
 
 #include <float.h>
+#ifdef __i386__
 #include <ieeefp.h>
+#endif
 
 #include "fpmath.h"    
 #include "math.h"
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to