diff options
author | obrien <obrien@FreeBSD.org> | 2001-05-24 08:47:42 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-05-24 08:47:42 +0000 |
commit | 8d900018e737354ad66ccfe561900b5454b50429 (patch) | |
tree | e5b1b1d859768d89d1f167183740f3329c71754d /lib/libc/string | |
parent | a179ee09ab9ca2d9d1d09dc4752c53a13609f5e9 (diff) | |
download | FreeBSD-src-8d900018e737354ad66ccfe561900b5454b50429.zip FreeBSD-src-8d900018e737354ad66ccfe561900b5454b50429.tar.gz |
Make the rcsid and FreeBSD IDs more sane in the wcs* and wmem* files.
Do the same for the non-wcs*/wmem* files while I'm here.
Diffstat (limited to 'lib/libc/string')
53 files changed, 223 insertions, 93 deletions
diff --git a/lib/libc/string/bcmp.c b/lib/libc/string/bcmp.c index 5a3ae61..f8b06c3b 100644 --- a/lib/libc/string/bcmp.c +++ b/lib/libc/string/bcmp.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)bcmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <string.h> diff --git a/lib/libc/string/bcopy.c b/lib/libc/string/bcopy.c index f90b09c..b7e6861 100644 --- a/lib/libc/string/bcopy.c +++ b/lib/libc/string/bcopy.c @@ -37,6 +37,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)bcopy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/ffs.c b/lib/libc/string/ffs.c index 099ff8e..6998422 100644 --- a/lib/libc/string/ffs.c +++ b/lib/libc/string/ffs.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)ffs.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <string.h> diff --git a/lib/libc/string/index.c b/lib/libc/string/index.c index 37e505f..242e609 100644 --- a/lib/libc/string/index.c +++ b/lib/libc/string/index.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)index.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/memccpy.c b/lib/libc/string/memccpy.c index c457110..9f7bbff 100644 --- a/lib/libc/string/memccpy.c +++ b/lib/libc/string/memccpy.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)memccpy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/memchr.c b/lib/libc/string/memchr.c index 7200894..dd9f133 100644 --- a/lib/libc/string/memchr.c +++ b/lib/libc/string/memchr.c @@ -37,6 +37,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)memchr.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/memcmp.c b/lib/libc/string/memcmp.c index d025d89..b40e9fd 100644 --- a/lib/libc/string/memcmp.c +++ b/lib/libc/string/memcmp.c @@ -37,6 +37,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)memcmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/memset.c b/lib/libc/string/memset.c index afe5f96..39f4a31 100644 --- a/lib/libc/string/memset.c +++ b/lib/libc/string/memset.c @@ -37,6 +37,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)memset.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/types.h> diff --git a/lib/libc/string/rindex.c b/lib/libc/string/rindex.c index 69dced4..1283db0 100644 --- a/lib/libc/string/rindex.c +++ b/lib/libc/string/rindex.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)rindex.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <stddef.h> #include <string.h> diff --git a/lib/libc/string/strcasecmp.c b/lib/libc/string/strcasecmp.c index 463c4de..f1d4f38 100644 --- a/lib/libc/string/strcasecmp.c +++ b/lib/libc/string/strcasecmp.c @@ -31,13 +31,17 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -#include <string.h> -#include <ctype.h> - #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strcasecmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif + +#include <sys/cdefs.h> +#include <string.h> +#include <ctype.h> typedef unsigned char u_char; diff --git a/lib/libc/string/strcat.c b/lib/libc/string/strcat.c index 95dcd1d..480b2b4 100644 --- a/lib/libc/string/strcat.c +++ b/lib/libc/string/strcat.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strcat.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <string.h> diff --git a/lib/libc/string/strcmp.c b/lib/libc/string/strcmp.c index cf25e50..da48f91 100644 --- a/lib/libc/string/strcmp.c +++ b/lib/libc/string/strcmp.c @@ -37,6 +37,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strcmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/strcoll.c b/lib/libc/string/strcoll.c index 5213cf8..5f9cd69 100644 --- a/lib/libc/string/strcoll.c +++ b/lib/libc/string/strcoll.c @@ -23,10 +23,13 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif + #include <stdlib.h> #include <string.h> #include "collate.h" diff --git a/lib/libc/string/strcpy.c b/lib/libc/string/strcpy.c index c9b44b1..4e26c94 100644 --- a/lib/libc/string/strcpy.c +++ b/lib/libc/string/strcpy.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strcpy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/strcspn.c b/lib/libc/string/strcspn.c index a1c2e1d..6f693b03 100644 --- a/lib/libc/string/strcspn.c +++ b/lib/libc/string/strcspn.c @@ -37,6 +37,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strcspn.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/strdup.c b/lib/libc/string/strdup.c index a1c2eed..55ba8cc 100644 --- a/lib/libc/string/strdup.c +++ b/lib/libc/string/strdup.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strdup.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <stddef.h> #include <stdlib.h> diff --git a/lib/libc/string/strerror.c b/lib/libc/string/strerror.c index 5acefd9..d64120f 100644 --- a/lib/libc/string/strerror.c +++ b/lib/libc/string/strerror.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strerror.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <stdio.h> #include <string.h> diff --git a/lib/libc/string/strlcat.c b/lib/libc/string/strlcat.c index 5bc2c91..c325ef3 100644 --- a/lib/libc/string/strlcat.c +++ b/lib/libc/string/strlcat.c @@ -25,13 +25,15 @@ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ #if defined(LIBC_SCCS) && !defined(lint) static char *rcsid = "$OpenBSD: strlcat.c,v 1.2 1999/06/17 16:28:58 millert Exp $"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/types.h> #include <string.h> diff --git a/lib/libc/string/strlcpy.c b/lib/libc/string/strlcpy.c index 300a28b..fde5ff5 100644 --- a/lib/libc/string/strlcpy.c +++ b/lib/libc/string/strlcpy.c @@ -28,8 +28,14 @@ */ #if defined(LIBC_SCCS) && !defined(lint) +#if 0 static char *rcsid = "$OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp $"; +#endif #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/types.h> #include <string.h> diff --git a/lib/libc/string/strlen.c b/lib/libc/string/strlen.c index 323fbe4..e1c66e4 100644 --- a/lib/libc/string/strlen.c +++ b/lib/libc/string/strlen.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strlen.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/strmode.c b/lib/libc/string/strmode.c index 2c3f44a..a2bf3af 100644 --- a/lib/libc/string/strmode.c +++ b/lib/libc/string/strmode.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strmode.c 8.3 (Berkeley) 8/15/94"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/types.h> #include <sys/stat.h> diff --git a/lib/libc/string/strncat.c b/lib/libc/string/strncat.c index 1b82a75..c71cfa2 100644 --- a/lib/libc/string/strncat.c +++ b/lib/libc/string/strncat.c @@ -37,6 +37,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strncat.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/strncmp.c b/lib/libc/string/strncmp.c index 4b701a9..4b2aa01 100644 --- a/lib/libc/string/strncmp.c +++ b/lib/libc/string/strncmp.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strncmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/strncpy.c b/lib/libc/string/strncpy.c index 9e72740..772f8d2 100644 --- a/lib/libc/string/strncpy.c +++ b/lib/libc/string/strncpy.c @@ -37,6 +37,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strncpy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/strpbrk.c b/lib/libc/string/strpbrk.c index 119d8b7..f5b7df3 100644 --- a/lib/libc/string/strpbrk.c +++ b/lib/libc/string/strpbrk.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strpbrk.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/strsep.c b/lib/libc/string/strsep.c index ddad596..485f651 100644 --- a/lib/libc/string/strsep.c +++ b/lib/libc/string/strsep.c @@ -38,6 +38,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif /* * Get next token from string *stringp, where tokens are possibly-empty diff --git a/lib/libc/string/strsignal.c b/lib/libc/string/strsignal.c index 5ec6365..fd5f288 100644 --- a/lib/libc/string/strsignal.c +++ b/lib/libc/string/strsignal.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strerror.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <stdio.h> #include <string.h> diff --git a/lib/libc/string/strspn.c b/lib/libc/string/strspn.c index 4676bd4..eb118e2 100644 --- a/lib/libc/string/strspn.c +++ b/lib/libc/string/strspn.c @@ -34,6 +34,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strspn.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/strstr.c b/lib/libc/string/strstr.c index 1f10961..aaa6486 100644 --- a/lib/libc/string/strstr.c +++ b/lib/libc/string/strstr.c @@ -37,6 +37,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strstr.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/cdefs.h> #include <string.h> diff --git a/lib/libc/string/strtok.c b/lib/libc/string/strtok.c index 1140bfc..6af3529 100644 --- a/lib/libc/string/strtok.c +++ b/lib/libc/string/strtok.c @@ -41,6 +41,11 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif + #include <stddef.h> #include <string.h> diff --git a/lib/libc/string/strxfrm.c b/lib/libc/string/strxfrm.c index ac172f8..31922cf 100644 --- a/lib/libc/string/strxfrm.c +++ b/lib/libc/string/strxfrm.c @@ -23,10 +23,13 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif + #include <stdlib.h> #include <string.h> #include "collate.h" diff --git a/lib/libc/string/swab.c b/lib/libc/string/swab.c index a4fc3b9..da85086 100644 --- a/lib/libc/string/swab.c +++ b/lib/libc/string/swab.c @@ -37,6 +37,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)swab.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <string.h> 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> diff --git a/lib/libc/string/wcschr.c b/lib/libc/string/wcschr.c index 9c253dc..6eebfba 100644 --- a/lib/libc/string/wcschr.c +++ b/lib/libc/string/wcschr.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcschr.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: wcschr.c,v 1.2 2000/12/21 05:07:25 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wcschr.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> diff --git a/lib/libc/string/wcscmp.c b/lib/libc/string/wcscmp.c index d0eb1ee..dcf9b57 100644 --- a/lib/libc/string/wcscmp.c +++ b/lib/libc/string/wcscmp.c @@ -1,5 +1,3 @@ -/* $NetBSD$ */ - /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -34,8 +32,6 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #include <sys/cdefs.h> @@ -46,6 +42,10 @@ static char sccsid[] = "@(#)strcmp.c 8.1 (Berkeley) 6/4/93"; __RCSID("$NetBSD$"); #endif #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> diff --git a/lib/libc/string/wcscpy.c b/lib/libc/string/wcscpy.c index 6d0b40d..d05804a 100644 --- a/lib/libc/string/wcscpy.c +++ b/lib/libc/string/wcscpy.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcscpy.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: wcscpy.c,v 1.2 2000/12/21 04:51:09 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wcscpy.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> diff --git a/lib/libc/string/wcscspn.c b/lib/libc/string/wcscspn.c index 10a3e80..7309574 100644 --- a/lib/libc/string/wcscspn.c +++ b/lib/libc/string/wcscspn.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcscspn.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: wcscspn.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: wcscspn.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> diff --git a/lib/libc/string/wcslcat.c b/lib/libc/string/wcslcat.c index 3145eaf..3634bfd 100644 --- a/lib/libc/string/wcslcat.c +++ b/lib/libc/string/wcslcat.c @@ -1,6 +1,3 @@ -/* $NetBSD: wcslcat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $ */ -/* from OpenBSD: strlcat.c,v 1.3 2000/11/24 11:10:02 itojun Exp */ - /* * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> * All rights reserved. @@ -27,13 +24,17 @@ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * from OpenBSD: strlcat.c,v 1.3 2000/11/24 11:10:02 itojun Exp */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wcslcat.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 <sys/types.h> #include <assert.h> diff --git a/lib/libc/string/wcslcpy.c b/lib/libc/string/wcslcpy.c index ff883e0..240feb4 100644 --- a/lib/libc/string/wcslcpy.c +++ b/lib/libc/string/wcslcpy.c @@ -1,6 +1,3 @@ -/* $NetBSD: wcslcpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $ */ -/* from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */ - /* * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> * All rights reserved. @@ -27,13 +24,17 @@ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wcslcpy.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 <sys/types.h> #include <assert.h> diff --git a/lib/libc/string/wcslen.c b/lib/libc/string/wcslen.c index 1e03817..8e30395 100644 --- a/lib/libc/string/wcslen.c +++ b/lib/libc/string/wcslen.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcslen.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: wcslen.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: wcslen.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> diff --git a/lib/libc/string/wcsncat.c b/lib/libc/string/wcsncat.c index a0410df..8d98bdb 100644 --- a/lib/libc/string/wcsncat.c +++ b/lib/libc/string/wcsncat.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcsncat.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: wcsncat.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: wcsncat.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> diff --git a/lib/libc/string/wcsncmp.c b/lib/libc/string/wcsncmp.c index 0b406af..bc1abe7 100644 --- a/lib/libc/string/wcsncmp.c +++ b/lib/libc/string/wcsncmp.c @@ -1,5 +1,3 @@ -/* $NetBSD$ */ - /* * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. @@ -31,8 +29,6 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #include <sys/cdefs.h> @@ -43,6 +39,10 @@ static char sccsid[] = "@(#)strncmp.c 8.1 (Berkeley) 6/4/93"; __RCSID("$NetBSD$"); #endif #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> 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> diff --git a/lib/libc/string/wcspbrk.c b/lib/libc/string/wcspbrk.c index 8c3e066..2808ed2 100644 --- a/lib/libc/string/wcspbrk.c +++ b/lib/libc/string/wcspbrk.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcspbrk.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wcspbrk.c,v 1.2 2000/12/21 05:07:25 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wcspbrk.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> diff --git a/lib/libc/string/wcsrchr.c b/lib/libc/string/wcsrchr.c index 5b3d789..4dc9b4b 100644 --- a/lib/libc/string/wcsrchr.c +++ b/lib/libc/string/wcsrchr.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcsrchr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wcsrchr.c,v 1.2 2000/12/21 05:07:25 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wcsrchr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> diff --git a/lib/libc/string/wcsspn.c b/lib/libc/string/wcsspn.c index 2f91f60..40b583b 100644 --- a/lib/libc/string/wcsspn.c +++ b/lib/libc/string/wcsspn.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcsspn.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wcsspn.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: wcsspn.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> diff --git a/lib/libc/string/wcsstr.c b/lib/libc/string/wcsstr.c index f6eb89d..1e4cf21 100644 --- a/lib/libc/string/wcsstr.c +++ b/lib/libc/string/wcsstr.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcsstr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wcsstr.c,v 1.2 2000/12/21 05:07:25 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wcsstr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> diff --git a/lib/libc/string/wcswidth.c b/lib/libc/string/wcswidth.c index ed3eb9d..3ad70c1 100644 --- a/lib/libc/string/wcswidth.c +++ b/lib/libc/string/wcswidth.c @@ -1,5 +1,3 @@ -/* $NetBSD: wcswidth.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wcswidth.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: wcswidth.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> diff --git a/lib/libc/string/wmemchr.c b/lib/libc/string/wmemchr.c index 80add2a..fa49a74 100644 --- a/lib/libc/string/wmemchr.c +++ b/lib/libc/string/wmemchr.c @@ -1,5 +1,3 @@ -/* $NetBSD: wmemchr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wmemchr.c,v 1.2 2000/12/20 14:08:31 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wmemchr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> diff --git a/lib/libc/string/wmemcmp.c b/lib/libc/string/wmemcmp.c index 1ce3946..158bf09 100644 --- a/lib/libc/string/wmemcmp.c +++ b/lib/libc/string/wmemcmp.c @@ -1,5 +1,3 @@ -/* $NetBSD: wmemcmp.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wmemcmp.c,v 1.2 2000/12/20 14:08:31 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wmemcmp.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> diff --git a/lib/libc/string/wmemcpy.c b/lib/libc/string/wmemcpy.c index af2ae99..bb8d058 100644 --- a/lib/libc/string/wmemcpy.c +++ b/lib/libc/string/wmemcpy.c @@ -1,5 +1,3 @@ -/* $NetBSD: wmemcpy.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wmemcpy.c,v 1.2 2000/12/20 14:08:31 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wmemcpy.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <string.h> diff --git a/lib/libc/string/wmemmove.c b/lib/libc/string/wmemmove.c index 2b9e275..edf8d1d 100644 --- a/lib/libc/string/wmemmove.c +++ b/lib/libc/string/wmemmove.c @@ -1,5 +1,3 @@ -/* $NetBSD: wmemmove.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wmemmove.c,v 1.2 2000/12/20 14:08:31 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wmemmove.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <string.h> diff --git a/lib/libc/string/wmemset.c b/lib/libc/string/wmemset.c index c456385..08ce087 100644 --- a/lib/libc/string/wmemset.c +++ b/lib/libc/string/wmemset.c @@ -1,5 +1,3 @@ -/* $NetBSD: wmemset.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wmemset.c,v 1.2 2000/12/20 14:08:31 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wmemset.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> |