summaryrefslogtreecommitdiff
path: root/src/string/memchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/memchr.c')
-rw-r--r--src/string/memchr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/memchr.c b/src/string/memchr.c
index 1c228220..aac59df0 100644
--- a/src/string/memchr.c
+++ b/src/string/memchr.c
@@ -25,7 +25,7 @@ void * memchr(const void *s, int c, size_t n)
return NULL;
}
-__check_3(void *, 0, memchr, const void *, int, size_t)
+CHECK_3(void *, 0, memchr, const void *, int, size_t)
/***
searches the first ARGUMENT(n) bytes of memory at ARGUMENT(s) for