summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-04-18 11:41:04 -0400
committerRich Felker <dalias@aerifal.cx>2012-04-18 11:41:04 -0400
commited0e3a357e5a5aef394b0b94d13c3a5c078f67f2 (patch)
tree93b2d922ff500a9e104106c3b9f5cd87c80798ad
parentef2c4fd91ffb0b333f7258e3d62266414d00702e (diff)
downloadmusl-ed0e3a357e5a5aef394b0b94d13c3a5c078f67f2.tar.gz
fix incorrect macro name for MATH_ERREXCEPT in math.h
-rw-r--r--include/math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/math.h b/include/math.h
index ff62cb7c..bc0159e6 100644
--- a/include/math.h
+++ b/include/math.h
@@ -25,7 +25,7 @@ extern "C" {
#define HUGE_VALL ((long double)INFINITY)
#define MATH_ERRNO 1
-#define MATH_EXCEPT 2
+#define MATH_ERREXCEPT 2
#define math_errhandling 2
#define FP_ILOGBNAN (((unsigned)-1)>>1)