diff options
author | nsz <nsz@port70.net> | 2012-05-28 22:55:03 +0200 |
---|---|---|
committer | nsz <nsz@port70.net> | 2012-05-28 22:55:03 +0200 |
commit | b1cf11c090900cc476c2a26d739e16aaffbdf6f5 (patch) | |
tree | 672d6e62a7e62271ba6d5b4ffa35d70641b71991 /include | |
parent | 5c1909a8d210cd08a776a2fd6681dbea1f0ae480 (diff) | |
download | musl-b1cf11c090900cc476c2a26d739e16aaffbdf6f5.tar.gz musl-b1cf11c090900cc476c2a26d739e16aaffbdf6f5.tar.bz2 musl-b1cf11c090900cc476c2a26d739e16aaffbdf6f5.tar.xz musl-b1cf11c090900cc476c2a26d739e16aaffbdf6f5.zip |
math: fix nextafter definition in tgmath.h
Diffstat (limited to 'include')
-rw-r--r-- | include/tgmath.h | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |