From 1707c9c3f564ce99c41c22e4a4a0ae03dde99737 Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Thu, 24 Oct 2002 02:48:45 +0000 Subject: [PATCH] Restore Berkeley SCCS id. --- lib/libc/string/wcsncpy.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/libc/string/wcsncpy.c b/lib/libc/string/wcsncpy.c index 75dfb1fbe71..e9c9110fb63 100644 --- a/lib/libc/string/wcsncpy.c +++ b/lib/libc/string/wcsncpy.c @@ -34,6 +34,11 @@ * SUCH DAMAGE. */ +#if 0 +#if defined(LIBC_SCCS) && !defined(lint) +static char sccsid[] = "@(#)strncpy.c 8.1 (Berkeley) 6/4/93"; +#endif /* LIBC_SCCS and not lint */ +#endif #include __FBSDID("$FreeBSD$"); @@ -61,4 +66,3 @@ wcsncpy(wchar_t * __restrict dst, const wchar_t * __restrict src, size_t n) } return (dst); } -