From: Rich Felker Date: Sun, 22 Jul 2012 23:02:02 +0000 (-0400) Subject: fix namespace issue in prototypes in math.h X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=b4f632bb279724eee4aa25bc4f575a9fde172551;ds=sidebyside fix namespace issue in prototypes in math.h --- 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);