summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/wcsspn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/string/wcsspn.c')
-rw-r--r--src/lib/libc/string/wcsspn.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/string/wcsspn.c b/src/lib/libc/string/wcsspn.c
index 5162fa0763..a3f28e3a49 100644
--- a/src/lib/libc/string/wcsspn.c
+++ b/src/lib/libc/string/wcsspn.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcsspn.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ 1/* $OpenBSD: wcsspn.c,v 1.4 2015/09/12 16:23:14 guenther Exp $ */
2/* $NetBSD: wcsspn.c,v 1.3 2001/09/21 16:09:15 yamt Exp $ */ 2/* $NetBSD: wcsspn.c,v 1.3 2001/09/21 16:09:15 yamt Exp $ */
3 3
4/*- 4/*-
@@ -53,3 +53,4 @@ wcsspn(const wchar_t *s, const wchar_t *set)
53done: 53done:
54 return (p - s); 54 return (p - s);
55} 55}
56DEF_STRONG(wcsspn);