diff options
Diffstat (limited to 'lib/libc/string/wmemcpy.c')
-rw-r--r-- | lib/libc/string/wmemcpy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/string/wmemcpy.c b/lib/libc/string/wmemcpy.c index 30956eb4f483..9db16fe77a69 100644 --- a/lib/libc/string/wmemcpy.c +++ b/lib/libc/string/wmemcpy.c @@ -34,13 +34,13 @@ __RCSID("$NetBSD: wmemcpy.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <string.h> #include <wchar.h> +#include <ssp/ssp.h> wchar_t * -wmemcpy(wchar_t * __restrict d, const wchar_t * __restrict s, size_t n) +__ssp_real(wmemcpy)(wchar_t * __restrict d, const wchar_t * __restrict s, + size_t n) { return (wchar_t *)memcpy(d, s, n * sizeof(wchar_t)); } |