diff options
Diffstat (limited to 'lib/libc/string/wcpcpy.c')
-rw-r--r-- | lib/libc/string/wcpcpy.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/libc/string/wcpcpy.c b/lib/libc/string/wcpcpy.c index 41b7c5178269..2ae014b31d29 100644 --- a/lib/libc/string/wcpcpy.c +++ b/lib/libc/string/wcpcpy.c @@ -31,16 +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> -__FBSDID("$FreeBSD$"); - #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); |