From: nsz Date: Mon, 28 May 2012 20:55:03 +0000 (+0200) Subject: math: fix nextafter definition in tgmath.h X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=b1cf11c090900cc476c2a26d739e16aaffbdf6f5 math: fix nextafter definition in tgmath.h --- diff --git a/include/tgmath.h b/include/tgmath.h index a181ef00..5b65e21f 100644 --- a/include/tgmath.h +++ b/include/tgmath.h @@ -230,7 +230,7 @@ sizeof(double) == sizeof(long double) #define lrint(x) __tg_real(lrint, (x)) #define lround(x) __tg_real(lround, (x)) #define nearbyint(x) __tg_real(nearbyint, (x)) -#define nextafter(x,y) __tg_real_2(nextafter, (x), (y) +#define nextafter(x,y) __tg_real_2(nextafter, (x), (y)) #define nexttoward(x,y) __tg_real_2(nexttoward, (x), (y)) #define pow(x,y) __tg_real_complex_pow((x), (y)) #define remainder(x,y) __tg_real_2(remainder, (x), (y))