[MLton-commit] r4507
Stephen Weeks
MLton@mlton.org
Tue, 9 May 2006 18:01:40 -0700
Alpha renamed to avoid "shadows a global declaration" warning.
----------------------------------------------------------------------
U mlton/branches/on-20050822-x86_64-branch/runtime/platform/float-math.c
----------------------------------------------------------------------
Modified: mlton/branches/on-20050822-x86_64-branch/runtime/platform/float-math.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/platform/float-math.c 2006-05-10 00:54:07 UTC (rev 4506)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/platform/float-math.c 2006-05-10 01:01:40 UTC (rev 4507)
@@ -28,8 +28,8 @@
binaryReal(pow)
#undef binaryReal
-float frexpf(float x, int *exp) {
- return (float)frexp((double)x, exp);
+float frexpf(float x, int *e) {
+ return (float)frexp((double)x, e);
}
float ldexpf (float x, int i) {