From: Rich Felker Date: Sun, 22 Jul 2012 23:02:02 +0000 (-0400) Subject: fix namespace issue in prototypes in math.h X-Git-Tag: v0.9.3~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4f632bb279724eee4aa25bc4f575a9fde172551;p=musl 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);