[MLton-commit] r4588
Stephen Weeks
MLton@mlton.org
Wed, 24 May 2006 17:31:29 -0700
Fixed fegetround prototype.
----------------------------------------------------------------------
U mlton/branches/on-20050822-x86_64-branch/runtime/basis/Real/IEEEReal.c
----------------------------------------------------------------------
Modified: mlton/branches/on-20050822-x86_64-branch/runtime/basis/Real/IEEEReal.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/basis/Real/IEEEReal.c 2006-05-25 00:30:29 UTC (rev 4587)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/basis/Real/IEEEReal.c 2006-05-25 00:31:28 UTC (rev 4588)
@@ -11,7 +11,7 @@
#define ROUNDING_CONTROL_MASK 0x0C00
#define ROUNDING_CONTROL_SHIFT 10
-int fegetround (void) {
+static inline int fegetround (void) {
unsigned short controlWord;
_FPU_GETCW (controlWord);