Browse Source

fix namespace issue in prototypes in math.h

Rich Felker 12 years ago
parent
commit
b4f632bb27
1 changed files with 2 additions and 2 deletions
  1. 2 2
      include/math.h

+ 2 - 2
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);