|
From: Stephen W. <sw...@ml...> - 2006-05-24 17:31:30
|
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);
|