fix namespace issue in prototypes in math.h

This commit is contained in:
Rich Felker 2012-07-22 19:02:02 -04:00
parent d646249124
commit b4f632bb27

View File

@ -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);