summaryrefslogtreecommitdiff
path: root/src/stdlib/bsearch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/bsearch.c')
-rw-r--r--src/stdlib/bsearch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/bsearch.c b/src/stdlib/bsearch.c
index a096cf16..f3b0fb32 100644
--- a/src/stdlib/bsearch.c
+++ b/src/stdlib/bsearch.c
@@ -21,7 +21,7 @@ void * bsearch(const void * key, const void * base, size_t nmemb, size_t size, i
#ifndef NDEBUG
for (size_t i = 0; nmemb != 0 && i < nmemb - 1; i++) {
if (SAFE_COMPAR(compar, addr + (i * size), addr + ((i + 1) * size), size, "bsearch") > 0) {
- __undefined("In call to bsearch(): Base array is not sorted");
+ UNDEFINED("In call to bsearch(): Base array is not sorted");
}
}
#endif