summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strcasestr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/string/strcasestr.c')
-rw-r--r--src/lib/libc/string/strcasestr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/string/strcasestr.c b/src/lib/libc/string/strcasestr.c
index aa74c0176d..abb3e15549 100644
--- a/src/lib/libc/string/strcasestr.c
+++ b/src/lib/libc/string/strcasestr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strcasestr.c,v 1.3 2006/03/31 05:34:55 deraadt Exp $ */ 1/* $OpenBSD: strcasestr.c,v 1.4 2015/08/31 02:53:57 guenther Exp $ */
2/* $NetBSD: strcasestr.c,v 1.2 2005/02/09 21:35:47 kleink Exp $ */ 2/* $NetBSD: strcasestr.c,v 1.2 2005/02/09 21:35:47 kleink Exp $ */
3 3
4/*- 4/*-
@@ -58,3 +58,4 @@ strcasestr(const char *s, const char *find)
58 } 58 }
59 return ((char *)s); 59 return ((char *)s);
60} 60}
61DEF_WEAK(strcasestr);