diff options
Diffstat (limited to 'src/string/memchr.c')
-rw-r--r-- | src/string/memchr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/memchr.c b/src/string/memchr.c index 49965560..1c228220 100644 --- a/src/string/memchr.c +++ b/src/string/memchr.c @@ -25,6 +25,8 @@ void * memchr(const void *s, int c, size_t n) return NULL; } +__check_3(void *, 0, memchr, const void *, int, size_t) + /*** searches the first ARGUMENT(n) bytes of memory at ARGUMENT(s) for ARGUMENT(c) (converted to an TYPE(unsigned char)). |