diff options
Diffstat (limited to 'lib/libc/string/wcscat.c')
-rw-r--r-- | lib/libc/string/wcscat.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/string/wcscat.c b/lib/libc/string/wcscat.c index 25161d3..861822b 100644 --- a/lib/libc/string/wcscat.c +++ b/lib/libc/string/wcscat.c @@ -1,4 +1,3 @@ -/* $NetBSD: wcscat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $ */ /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -25,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wcscat.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: wcscat.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> |