diff options
Diffstat (limited to 'lib/libc/string/wcsncpy.c')
-rw-r--r-- | lib/libc/string/wcsncpy.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/string/wcsncpy.c b/lib/libc/string/wcsncpy.c index b184628..907344b 100644 --- a/lib/libc/string/wcsncpy.c +++ b/lib/libc/string/wcsncpy.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcsncpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wcsncpy.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wcsncpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> |