diff options
Diffstat (limited to 'lib/libc/string/wcpcpy.c')
-rw-r--r-- | lib/libc/string/wcpcpy.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libc/string/wcpcpy.c b/lib/libc/string/wcpcpy.c index 22c623bef320..2ae014b31d29 100644 --- a/lib/libc/string/wcpcpy.c +++ b/lib/libc/string/wcpcpy.c @@ -31,14 +31,11 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)strcpy.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ -#include <sys/cdefs.h> #include <wchar.h> +#include <ssp/ssp.h> wchar_t * -wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from) +__ssp_real(wcpcpy)(wchar_t * __restrict to, const wchar_t * __restrict from) { for (; (*to = *from); ++from, ++to); |