diff options
Diffstat (limited to 'libc/string/memccpy.c')
-rw-r--r-- | libc/string/memccpy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/string/memccpy.c b/libc/string/memccpy.c index fe5a76a4d..076bdac7d 100644 --- a/libc/string/memccpy.c +++ b/libc/string/memccpy.c @@ -18,3 +18,4 @@ void *memccpy(void * __restrict s1, const void * __restrict s2, int c, size_t n) return (n == (size_t) -1) ? NULL : r1; } +libc_hidden_def(memccpy) |