svn commit: r238924 - head/lib/msun/src
Steve Kargl
kargl at FreeBSD.org
Mon Jul 30 21:58:28 UTC 2012
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"
More information about the svn-src-all
mailing list