summaryrefslogtreecommitdiff
path: root/math/mathcalls.h
diff options
context:
space:
mode:
Diffstat (limited to 'math/mathcalls.h')
-rw-r--r--math/mathcalls.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/math/mathcalls.h b/math/mathcalls.h
index 13c33e8ebe..3a969122ae 100644
--- a/math/mathcalls.h
+++ b/math/mathcalls.h
@@ -88,10 +88,10 @@ __MATHCALL (atanh,, (_Mdouble_ __x));
__MATHCALL (exp,, (_Mdouble_ __x));
/* Break VALUE into a normalized fraction and an integral power of 2. */
-__MATHCALL (frexp,, (_Mdouble_ __value, int *__exp));
+__MATHCALL (frexp,, (_Mdouble_ __x, int *__exponent));
/* X times (two to the EXP power). */
-__MATHCALL (ldexp,, (_Mdouble_ __x, int __exp));
+__MATHCALL (ldexp,, (_Mdouble_ __x, int __exponent));
/* Natural logarithm of X. */
__MATHCALL (log,, (_Mdouble_ __x));
@@ -111,7 +111,7 @@ __MATHCALL (logb,, (_Mdouble_ __x));
#endif
/* Break VALUE into integral and fractional parts. */
-__MATHCALL (modf,, (_Mdouble_ __value, _Mdouble_ *__iptr));
+__MATHCALL (modf,, (_Mdouble_ __x, _Mdouble_ *__iptr));
/* Power functions. */