diff options
Diffstat (limited to 'lib/libc/string/wcslcpy.c')
-rw-r--r-- | lib/libc/string/wcslcpy.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/string/wcslcpy.c b/lib/libc/string/wcslcpy.c index ca60d587004f..82269656b985 100644 --- a/lib/libc/string/wcslcpy.c +++ b/lib/libc/string/wcslcpy.c @@ -35,10 +35,9 @@ __RCSID("$NetBSD: wcslcpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <wchar.h> +#include <ssp/ssp.h> /* * Copy src to string dst of size siz. At most siz-1 characters @@ -46,7 +45,7 @@ __FBSDID("$FreeBSD$"); * Returns wcslen(src); if retval >= siz, truncation occurred. */ size_t -wcslcpy(wchar_t *dst, const wchar_t *src, size_t siz) +__ssp_real(wcslcpy)(wchar_t *dst, const wchar_t *src, size_t siz) { wchar_t *d = dst; const wchar_t *s = src; |