summaryrefslogtreecommitdiff
path: root/src/ctype
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype')
-rw-r--r--src/ctype/_ctype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ctype/_ctype.h b/src/ctype/_ctype.h
index dbb13ab1..d167ef8b 100644
--- a/src/ctype/_ctype.h
+++ b/src/ctype/_ctype.h
@@ -12,7 +12,7 @@
#else
#define ASSERT_REPRESENTABLE(_n, _min, _max, _type, _sentinel) do { \
if (!(((_n) == (_sentinel)) || (((_min) <= (_n)) && ((_n) <= (_max))))) { \
- __undefined("In call to %s(), parameter %s (value 0x%ju) is not representable as a %s (range [%s, %s]) or exactly %s", __func__, #_n, (uintmax_t)(_n), #_type, #_min, #_max, #_sentinel); \
+ UNDEFINED("In call to %s(), parameter %s (value 0x%ju) is not representable as a %s (range [%s, %s]) or exactly %s", __func__, #_n, (uintmax_t)(_n), #_type, #_min, #_max, #_sentinel); \
} \
} while (0)
#endif