aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/string/wcscat.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/string/wcscat.c')
-rw-r--r--lib/libc/string/wcscat.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libc/string/wcscat.c b/lib/libc/string/wcscat.c
index 7428ba3364f2..98e088100a87 100644
--- a/lib/libc/string/wcscat.c
+++ b/lib/libc/string/wcscat.c
@@ -1,5 +1,5 @@
/*-
- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ * SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (c)1999 Citrus Project,
* All rights reserved.
@@ -34,12 +34,11 @@
__RCSID("$NetBSD: wcscat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
#endif /* LIBC_SCCS and not lint */
#endif
-__FBSDID("$FreeBSD$");
-
#include <wchar.h>
+#include <ssp/ssp.h>
wchar_t *
-wcscat(wchar_t * __restrict s1, const wchar_t * __restrict s2)
+__ssp_real(wcscat)(wchar_t * __restrict s1, const wchar_t * __restrict s2)
{
wchar_t *cp;