diff options
Diffstat (limited to 'lib/libc/string/memrchr.c')
-rw-r--r-- | lib/libc/string/memrchr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/memrchr.c b/lib/libc/string/memrchr.c index bd27ebc620e..26a33995b70 100644 --- a/lib/libc/string/memrchr.c +++ b/lib/libc/string/memrchr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: memrchr.c,v 1.2 2007/11/27 16:22:12 martynas Exp $ */ +/* $OpenBSD: memrchr.c,v 1.3 2015/08/31 02:53:57 guenther Exp $ */ /* * Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> @@ -36,3 +36,4 @@ memrchr(const void *s, int c, size_t n) } return(NULL); } +DEF_WEAK(memrchr); |