summaryrefslogtreecommitdiff
path: root/lib/libc/string/wmemset.c
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2015-09-12 16:23:15 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2015-09-12 16:23:15 +0000
commite62064ff42624273a7cb491d6fad8ea75cc49ec5 (patch)
tree473d151ed967b36c822bb6651d2e38a2be7f771c /lib/libc/string/wmemset.c
parentba0532728244adb43ac9a8736e12d78e685ed88d (diff)
Wrap <inttypes.h> and finish wrapping of <wchar.h> so that calls go direct
and the symbols not in the C standard are weak
Diffstat (limited to 'lib/libc/string/wmemset.c')
-rw-r--r--lib/libc/string/wmemset.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/wmemset.c b/lib/libc/string/wmemset.c
index ac476dba6ad..a2d3295170e 100644
--- a/lib/libc/string/wmemset.c
+++ b/lib/libc/string/wmemset.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wmemset.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
+/* $OpenBSD: wmemset.c,v 1.4 2015/09/12 16:23:14 guenther Exp $ */
/* $NetBSD: wmemset.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */
/*-
@@ -44,3 +44,4 @@ wmemset(wchar_t *s, wchar_t c, size_t n)
}
return s;
}
+DEF_STRONG(wmemset);