diff options
Diffstat (limited to 'lib/libc/string/wmemset.c')
-rw-r--r-- | lib/libc/string/wmemset.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/string/wmemset.c b/lib/libc/string/wmemset.c index fcf40efb8e32..60fb14b6a4af 100644 --- a/lib/libc/string/wmemset.c +++ b/lib/libc/string/wmemset.c @@ -34,12 +34,11 @@ __RCSID("$NetBSD: wmemset.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> +#include <ssp/ssp.h> wchar_t * -wmemset(wchar_t *s, wchar_t c, size_t n) +__ssp_real(wmemset)(wchar_t *s, wchar_t c, size_t n) { size_t i; wchar_t *p; |