From b4f632bb279724eee4aa25bc4f575a9fde172551 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 22 Jul 2012 19:02:02 -0400 Subject: fix namespace issue in prototypes in math.h --- include/math.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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); -- cgit v1.2.1