summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-07-22 19:02:02 -0400
committerRich Felker <dalias@aerifal.cx>2012-07-22 19:02:02 -0400
commitb4f632bb279724eee4aa25bc4f575a9fde172551 (patch)
treefd97b5736e3437e1c7421e2ce6a19bab5249b3e5 /include
parentd64624912469fc4eccee95e65d7c9e3a3076d699 (diff)
downloadmusl-b4f632bb279724eee4aa25bc4f575a9fde172551.tar.gz
fix namespace issue in prototypes in math.h
Diffstat (limited to 'include')
-rw-r--r--include/math.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/math.h b/include/math.h
index d7326483..583dc3da 100644
--- a/include/math.h
+++ b/include/math.h
@@ -199,8 +199,8 @@ float fmodf(float, float);
long double fmodl(long double, long double);
double frexp(double, int *);
-float frexpf(float value, int *);
-long double frexpl(long double value, int *);
+float frexpf(float, int *);
+long double frexpl(long double, int *);
double hypot(double, double);
float hypotf(float, float);