diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-07-22 19:02:02 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-07-22 19:02:02 -0400 |
commit | b4f632bb279724eee4aa25bc4f575a9fde172551 (patch) | |
tree | fd97b5736e3437e1c7421e2ce6a19bab5249b3e5 /include/math.h | |
parent | d64624912469fc4eccee95e65d7c9e3a3076d699 (diff) | |
download | musl-b4f632bb279724eee4aa25bc4f575a9fde172551.tar.gz |
fix namespace issue in prototypes in math.h
Diffstat (limited to 'include/math.h')
-rw-r--r-- | include/math.h | 4 |
1 files changed, 2 insertions, 2 deletions
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); |