summaryrefslogtreecommitdiffstats
path: root/lib/libc/string/memchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/string/memchr.c')
-rw-r--r--lib/libc/string/memchr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/memchr.c b/lib/libc/string/memchr.c
index 4573e3ceb11..a6a4bd60d03 100644
--- a/lib/libc/string/memchr.c
+++ b/lib/libc/string/memchr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: memchr.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
+/* $OpenBSD: memchr.c,v 1.8 2015/08/31 02:53:57 guenther Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -46,3 +46,4 @@ memchr(const void *s, int c, size_t n)
}
return (NULL);
}
+DEF_STRONG(memchr);