diff --git a/src/lib/libc/crypt/crypt.c b/src/lib/libc/crypt/crypt.c index f0e2900f..15a78453 100644 --- a/src/lib/libc/crypt/crypt.c +++ b/src/lib/libc/crypt/crypt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crypt.c,v 1.19 2004/09/14 22:56:57 deraadt Exp $ */ +/* $OpenBSD: crypt.c,v 1.20 2005/08/08 08:05:33 espie Exp $ */ /* * FreeSec: libcrypt @@ -46,10 +46,6 @@ * posted to the sci.crypt newsgroup by the author and is available for FTP. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: crypt.c,v 1.19 2004/09/14 22:56:57 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/crypt/crypt2.c b/src/lib/libc/crypt/crypt2.c index 53b5bfb7..63a297e5 100644 --- a/src/lib/libc/crypt/crypt2.c +++ b/src/lib/libc/crypt/crypt2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crypt2.c,v 1.2 2004/09/14 22:56:57 deraadt Exp $ */ +/* $OpenBSD: crypt2.c,v 1.3 2005/08/08 08:05:33 espie Exp $ */ /* * FreeSec: libcrypt @@ -46,10 +46,6 @@ * posted to the sci.crypt newsgroup by the author and is available for FTP. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: crypt2.c,v 1.2 2004/09/14 22:56:57 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/crypt/md5crypt.c b/src/lib/libc/crypt/md5crypt.c index 97717e68..fe1393cf 100644 --- a/src/lib/libc/crypt/md5crypt.c +++ b/src/lib/libc/crypt/md5crypt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md5crypt.c,v 1.13 2003/08/07 00:30:21 deraadt Exp $ */ +/* $OpenBSD: md5crypt.c,v 1.14 2005/08/08 08:05:33 espie Exp $ */ /* * ---------------------------------------------------------------------------- @@ -12,10 +12,6 @@ * */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.13 2003/08/07 00:30:21 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/hash/helper.c b/src/lib/libc/hash/helper.c index bf3a6c24..a4a22551 100644 --- a/src/lib/libc/hash/helper.c +++ b/src/lib/libc/hash/helper.c @@ -1,4 +1,4 @@ -/* $OpenBSD: helper.c,v 1.7 2004/09/16 15:12:09 millert Exp $ */ +/* $OpenBSD: helper.c,v 1.8 2005/08/08 08:05:35 espie Exp $ */ /* * ---------------------------------------------------------------------------- @@ -9,10 +9,6 @@ * ---------------------------------------------------------------------------- */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: helper.c,v 1.7 2004/09/16 15:12:09 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/hash/md4.c b/src/lib/libc/hash/md4.c index 0979ae34..a59ca7c2 100644 --- a/src/lib/libc/hash/md4.c +++ b/src/lib/libc/hash/md4.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md4.c,v 1.6 2004/05/28 15:10:27 millert Exp $ */ +/* $OpenBSD: md4.c,v 1.7 2005/08/08 08:05:35 espie Exp $ */ /* * This code implements the MD4 message-digest algorithm. @@ -18,10 +18,6 @@ * will fill a supplied 16-byte array with the digest. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: md4.c,v 1.6 2004/05/28 15:10:27 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/hash/md5.c b/src/lib/libc/hash/md5.c index a1ff135e..e60bbd90 100644 --- a/src/lib/libc/hash/md5.c +++ b/src/lib/libc/hash/md5.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md5.c,v 1.7 2004/05/28 15:10:27 millert Exp $ */ +/* $OpenBSD: md5.c,v 1.8 2005/08/08 08:05:35 espie Exp $ */ /* * This code implements the MD5 message-digest algorithm. @@ -17,10 +17,6 @@ * will fill a supplied 16-byte array with the digest. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: md5.c,v 1.7 2004/05/28 15:10:27 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/hash/rmd160.c b/src/lib/libc/hash/rmd160.c index 4fb64cd1..a2e8debb 100644 --- a/src/lib/libc/hash/rmd160.c +++ b/src/lib/libc/hash/rmd160.c @@ -31,10 +31,6 @@ #include #include -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: rmd160.c,v 1.17 2004/05/28 15:10:27 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #define PUT_64BIT_LE(cp, value) do { \ (cp)[7] = (value) >> 56; \ (cp)[6] = (value) >> 48; \ diff --git a/src/lib/libc/hash/sha1.c b/src/lib/libc/hash/sha1.c index 968c2b32..f5851502 100644 --- a/src/lib/libc/hash/sha1.c +++ b/src/lib/libc/hash/sha1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sha1.c,v 1.19 2004/05/28 15:10:27 millert Exp $ */ +/* $OpenBSD: sha1.c,v 1.20 2005/08/08 08:05:35 espie Exp $ */ /* * SHA-1 in C @@ -14,10 +14,6 @@ * 34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: sha1.c,v 1.19 2004/05/28 15:10:27 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/hash/sha2.c b/src/lib/libc/hash/sha2.c index c99ed4d6..fd97de0e 100644 --- a/src/lib/libc/hash/sha2.c +++ b/src/lib/libc/hash/sha2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sha2.c,v 1.10 2004/05/28 15:10:27 millert Exp $ */ +/* $OpenBSD: sha2.c,v 1.11 2005/08/08 08:05:35 espie Exp $ */ /* * FILE: sha2.c @@ -34,10 +34,6 @@ * $From: sha2.c,v 1.1 2001/11/08 00:01:51 adg Exp adg $ */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: sha2.c,v 1.10 2004/05/28 15:10:27 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/_Exit.c b/src/lib/libc/stdlib/_Exit.c index 784015a2..5a2291a9 100644 --- a/src/lib/libc/stdlib/_Exit.c +++ b/src/lib/libc/stdlib/_Exit.c @@ -1,13 +1,9 @@ -/* $OpenBSD: _Exit.c,v 1.1 2004/05/03 17:21:13 millert Exp $ */ +/* $OpenBSD: _Exit.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ /* * Placed in the public domain by Todd C. Miller on January 21, 2004. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: _Exit.c,v 1.1 2004/05/03 17:21:13 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/_rand48.c b/src/lib/libc/stdlib/_rand48.c index fed7372f..7c950f7c 100644 --- a/src/lib/libc/stdlib/_rand48.c +++ b/src/lib/libc/stdlib/_rand48.c @@ -1,3 +1,4 @@ +/* $OpenBSD: _rand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -11,10 +12,6 @@ * to anyone/anything when using this software. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: _rand48.c,v 1.2 1996/08/19 08:33:19 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "rand48.h" unsigned short __rand48_seed[3] = { diff --git a/src/lib/libc/stdlib/a64l.c b/src/lib/libc/stdlib/a64l.c index 518bdb64..5312929c 100644 --- a/src/lib/libc/stdlib/a64l.c +++ b/src/lib/libc/stdlib/a64l.c @@ -1,12 +1,9 @@ +/* $OpenBSD: a64l.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /* * Written by J.T. Conklin . * Public domain. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: a64l.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/abort.c b/src/lib/libc/stdlib/abort.c index 2430c124..072a9fa8 100644 --- a/src/lib/libc/stdlib/abort.c +++ b/src/lib/libc/stdlib/abort.c @@ -1,3 +1,4 @@ +/* $OpenBSD: abort.c,v 1.14 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1985 Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: abort.c,v 1.13 2004/01/20 19:35:17 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/abs.c b/src/lib/libc/stdlib/abs.c index a471ab3a..5d2fbae6 100644 --- a/src/lib/libc/stdlib/abs.c +++ b/src/lib/libc/stdlib/abs.c @@ -1,3 +1,4 @@ +/* $OpenBSD: abs.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: abs.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include int diff --git a/src/lib/libc/stdlib/atexit.c b/src/lib/libc/stdlib/atexit.c index 0bffc053..019b9015 100644 --- a/src/lib/libc/stdlib/atexit.c +++ b/src/lib/libc/stdlib/atexit.c @@ -1,3 +1,4 @@ +/* $OpenBSD: atexit.c,v 1.10 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 2002 Daniel Hartmeier * All rights reserved. @@ -28,10 +29,6 @@ * */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: atexit.c,v 1.9 2005/06/17 21:38:59 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/atof.c b/src/lib/libc/stdlib/atof.c index 27245302..d14b58b0 100644 --- a/src/lib/libc/stdlib/atof.c +++ b/src/lib/libc/stdlib/atof.c @@ -1,3 +1,4 @@ +/* $OpenBSD: atof.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1988 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: atof.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include double diff --git a/src/lib/libc/stdlib/atoi.c b/src/lib/libc/stdlib/atoi.c index ea821ced..b0842678 100644 --- a/src/lib/libc/stdlib/atoi.c +++ b/src/lib/libc/stdlib/atoi.c @@ -1,3 +1,4 @@ +/* $OpenBSD: atoi.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: atoi.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include int diff --git a/src/lib/libc/stdlib/atol.c b/src/lib/libc/stdlib/atol.c index 38236b55..19708044 100644 --- a/src/lib/libc/stdlib/atol.c +++ b/src/lib/libc/stdlib/atol.c @@ -1,3 +1,4 @@ +/* $OpenBSD: atol.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: atol.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include long diff --git a/src/lib/libc/stdlib/atoll.c b/src/lib/libc/stdlib/atoll.c index 6786b62e..a65e682c 100644 --- a/src/lib/libc/stdlib/atoll.c +++ b/src/lib/libc/stdlib/atoll.c @@ -1,3 +1,4 @@ +/* $OpenBSD: atoll.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: atoll.c,v 1.2 2003/06/02 20:18:37 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include long long diff --git a/src/lib/libc/stdlib/bsearch.c b/src/lib/libc/stdlib/bsearch.c index 109211da..8193d27c 100644 --- a/src/lib/libc/stdlib/bsearch.c +++ b/src/lib/libc/stdlib/bsearch.c @@ -27,10 +27,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: bsearch.c,v 1.5 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* diff --git a/src/lib/libc/stdlib/calloc.c b/src/lib/libc/stdlib/calloc.c index 7aabed23..7105141d 100644 --- a/src/lib/libc/stdlib/calloc.c +++ b/src/lib/libc/stdlib/calloc.c @@ -1,3 +1,4 @@ +/* $OpenBSD: calloc.c,v 1.10 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: calloc.c,v 1.9 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/cfree.c b/src/lib/libc/stdlib/cfree.c index db1fa560..373c7ff7 100644 --- a/src/lib/libc/stdlib/cfree.c +++ b/src/lib/libc/stdlib/cfree.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cfree.c,v 1.4 2005/03/30 18:51:49 pat Exp $ */ +/* $OpenBSD: cfree.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1996 SigmaSoft, Th. Lockert @@ -25,10 +25,6 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: cfree.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/div.c b/src/lib/libc/stdlib/div.c index 32c53dff..f7ac2db4 100644 --- a/src/lib/libc/stdlib/div.c +++ b/src/lib/libc/stdlib/div.c @@ -1,3 +1,4 @@ +/* $OpenBSD: div.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1990 Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: div.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* div_t */ div_t diff --git a/src/lib/libc/stdlib/drand48.c b/src/lib/libc/stdlib/drand48.c index 02886d5b..b6c046c8 100644 --- a/src/lib/libc/stdlib/drand48.c +++ b/src/lib/libc/stdlib/drand48.c @@ -1,3 +1,4 @@ +/* $OpenBSD: drand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -11,10 +12,6 @@ * to anyone/anything when using this software. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: drand48.c,v 1.2 1996/08/19 08:33:29 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "rand48.h" extern unsigned short __rand48_seed[3]; diff --git a/src/lib/libc/stdlib/ecvt.c b/src/lib/libc/stdlib/ecvt.c index 657c5318..9289b3bf 100644 --- a/src/lib/libc/stdlib/ecvt.c +++ b/src/lib/libc/stdlib/ecvt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecvt.c,v 1.3 2003/06/17 21:56:24 millert Exp $ */ +/* $OpenBSD: ecvt.c,v 1.4 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 2002 Todd C. Miller @@ -20,10 +20,6 @@ * Materiel Command, USAF, under agreement number F39502-99-1-0512. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: ecvt.c,v 1.3 2003/06/17 21:56:24 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/erand48.c b/src/lib/libc/stdlib/erand48.c index b92dacff..2ffeaa6e 100644 --- a/src/lib/libc/stdlib/erand48.c +++ b/src/lib/libc/stdlib/erand48.c @@ -1,3 +1,4 @@ +/* $OpenBSD: erand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -11,10 +12,6 @@ * to anyone/anything when using this software. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: erand48.c,v 1.2 1996/08/19 08:33:29 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "rand48.h" double diff --git a/src/lib/libc/stdlib/exit.c b/src/lib/libc/stdlib/exit.c index a0960e83..90b7d5ad 100644 --- a/src/lib/libc/stdlib/exit.c +++ b/src/lib/libc/stdlib/exit.c @@ -1,3 +1,4 @@ +/* $OpenBSD: exit.c,v 1.11 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: exit.c,v 1.10 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/gcvt.c b/src/lib/libc/stdlib/gcvt.c index 9fd664b3..849af603 100644 --- a/src/lib/libc/stdlib/gcvt.c +++ b/src/lib/libc/stdlib/gcvt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gcvt.c,v 1.5 2003/06/17 21:56:24 millert Exp $ */ +/* $OpenBSD: gcvt.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 2002, 2003 Todd C. Miller @@ -20,10 +20,6 @@ * Materiel Command, USAF, under agreement number F39502-99-1-0512. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: gcvt.c,v 1.5 2003/06/17 21:56:24 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/getenv.c b/src/lib/libc/stdlib/getenv.c index 7e4d6b91..72367b34 100644 --- a/src/lib/libc/stdlib/getenv.c +++ b/src/lib/libc/stdlib/getenv.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getenv.c,v 1.8 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1987, 1993 * The Regents of the University of California. All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: getenv.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/getopt_long.c b/src/lib/libc/stdlib/getopt_long.c index 6ddc8e20..1bf79969 100644 --- a/src/lib/libc/stdlib/getopt_long.c +++ b/src/lib/libc/stdlib/getopt_long.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getopt_long.c,v 1.18 2005/03/30 18:51:49 pat Exp $ */ +/* $OpenBSD: getopt_long.c,v 1.19 2005/08/08 08:05:36 espie Exp $ */ /* $NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $ */ /* @@ -56,10 +56,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: getopt_long.c,v 1.18 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/getsubopt.c b/src/lib/libc/stdlib/getsubopt.c index dfd7a50b..735c85ba 100644 --- a/src/lib/libc/stdlib/getsubopt.c +++ b/src/lib/libc/stdlib/getsubopt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getsubopt.c,v 1.3 2005/03/30 18:51:49 pat Exp $ */ +/* $OpenBSD: getsubopt.c,v 1.4 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -29,14 +29,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)getsubopt.c 8.1 (Berkeley) 6/4/93"; -#else -static char rcsid[] = "$OpenBSD: getsubopt.c,v 1.3 2005/03/30 18:51:49 pat Exp $"; -#endif -#endif /* not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/hcreate.c b/src/lib/libc/stdlib/hcreate.c index 14e6fa41..e9b5ceed 100644 --- a/src/lib/libc/stdlib/hcreate.c +++ b/src/lib/libc/stdlib/hcreate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hcreate.c,v 1.1 2004/06/24 04:43:33 millert Exp $ */ +/* $OpenBSD: hcreate.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ /* $NetBSD: hcreate.c,v 1.5 2004/04/23 02:48:12 simonb Exp $ */ /* @@ -47,15 +47,6 @@ * nobody had a copy in the office, so... */ -#ifndef lint -static const char copyright[] = -"@(#) Copyright (c) 2001 Christopher G. Demetriou. All rights reserved.\n"; -#endif /* not lint */ - -#ifndef lint -static const char rcsid[] = "$OpenBSD: hcreate.c,v 1.1 2004/06/24 04:43:33 millert Exp $"; -#endif /* not lint */ - #include "namespace.h" #include #include diff --git a/src/lib/libc/stdlib/heapsort.c b/src/lib/libc/stdlib/heapsort.c index dcc0c8ba..e6fb61ba 100644 --- a/src/lib/libc/stdlib/heapsort.c +++ b/src/lib/libc/stdlib/heapsort.c @@ -30,10 +30,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: heapsort.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/insque.c b/src/lib/libc/stdlib/insque.c index 549246c7..8724efec 100644 --- a/src/lib/libc/stdlib/insque.c +++ b/src/lib/libc/stdlib/insque.c @@ -1,4 +1,4 @@ -/* $OpenBSD: insque.c,v 1.1 2003/05/08 23:26:30 millert Exp $ */ +/* $OpenBSD: insque.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1993 John Brezak @@ -28,10 +28,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: insque.c,v 1.1 2003/05/08 23:26:30 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include struct qelem { diff --git a/src/lib/libc/stdlib/jrand48.c b/src/lib/libc/stdlib/jrand48.c index 99cddb71..cb8c5927 100644 --- a/src/lib/libc/stdlib/jrand48.c +++ b/src/lib/libc/stdlib/jrand48.c @@ -1,3 +1,4 @@ +/* $OpenBSD: jrand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -11,10 +12,6 @@ * to anyone/anything when using this software. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: jrand48.c,v 1.2 1996/08/19 08:33:33 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "rand48.h" long diff --git a/src/lib/libc/stdlib/l64a.c b/src/lib/libc/stdlib/l64a.c index 325b41b3..4f33df37 100644 --- a/src/lib/libc/stdlib/l64a.c +++ b/src/lib/libc/stdlib/l64a.c @@ -1,12 +1,9 @@ +/* $OpenBSD: l64a.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /* * Written by J.T. Conklin . * Public domain. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: l64a.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/labs.c b/src/lib/libc/stdlib/labs.c index 1dc8b018..ca60b9ab 100644 --- a/src/lib/libc/stdlib/labs.c +++ b/src/lib/libc/stdlib/labs.c @@ -1,3 +1,4 @@ +/* $OpenBSD: labs.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: labs.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include long diff --git a/src/lib/libc/stdlib/lcong48.c b/src/lib/libc/stdlib/lcong48.c index 44bd74e4..2cf5c271 100644 --- a/src/lib/libc/stdlib/lcong48.c +++ b/src/lib/libc/stdlib/lcong48.c @@ -1,3 +1,4 @@ +/* $OpenBSD: lcong48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -11,10 +12,6 @@ * to anyone/anything when using this software. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: lcong48.c,v 1.2 1996/08/19 08:33:35 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "rand48.h" extern unsigned short __rand48_seed[3]; diff --git a/src/lib/libc/stdlib/ldiv.c b/src/lib/libc/stdlib/ldiv.c index bbb539a6..775065f5 100644 --- a/src/lib/libc/stdlib/ldiv.c +++ b/src/lib/libc/stdlib/ldiv.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ldiv.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1990 Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: ldiv.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* ldiv_t */ ldiv_t diff --git a/src/lib/libc/stdlib/llabs.c b/src/lib/libc/stdlib/llabs.c index 9611b5ae..0a0ff784 100644 --- a/src/lib/libc/stdlib/llabs.c +++ b/src/lib/libc/stdlib/llabs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: llabs.c,v 1.1 2003/07/21 20:20:04 millert Exp $ */ +/* $OpenBSD: llabs.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -33,13 +33,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: llabs.c,v 1.1 2003/07/21 20:20:04 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include -long long llabs(long long j) +long long +llabs(long long j) { return (j < 0 ? -j : j); } diff --git a/src/lib/libc/stdlib/lrand48.c b/src/lib/libc/stdlib/lrand48.c index 6b7524a5..21beb858 100644 --- a/src/lib/libc/stdlib/lrand48.c +++ b/src/lib/libc/stdlib/lrand48.c @@ -1,3 +1,4 @@ +/* $OpenBSD: lrand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -11,10 +12,6 @@ * to anyone/anything when using this software. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: lrand48.c,v 1.2 1996/08/19 08:33:36 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "rand48.h" extern unsigned short __rand48_seed[3]; diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c index 5a328b0e..65675456 100644 --- a/src/lib/libc/stdlib/malloc.c +++ b/src/lib/libc/stdlib/malloc.c @@ -1,3 +1,4 @@ +/* $OpenBSD: malloc.c,v 1.76 2005/08/08 08:05:36 espie Exp $ */ /* * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): @@ -7,10 +8,6 @@ * ---------------------------------------------------------------------------- */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: malloc.c,v 1.75 2005/07/07 05:28:53 tdeval Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * Defining MALLOC_EXTRA_SANITY will enable extra checks which are * related to internal conditions and consistency in malloc.c. This has diff --git a/src/lib/libc/stdlib/merge.c b/src/lib/libc/stdlib/merge.c index b193ae34..623f6521 100644 --- a/src/lib/libc/stdlib/merge.c +++ b/src/lib/libc/stdlib/merge.c @@ -1,3 +1,4 @@ +/* $OpenBSD: merge.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: merge.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * Hybrid exponential search/linear search merge sort with hybrid * natural/pairwise first pass. Requires about .3% more comparisons diff --git a/src/lib/libc/stdlib/mrand48.c b/src/lib/libc/stdlib/mrand48.c index cd34260b..977264ab 100644 --- a/src/lib/libc/stdlib/mrand48.c +++ b/src/lib/libc/stdlib/mrand48.c @@ -1,3 +1,4 @@ +/* $OpenBSD: mrand48.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -11,10 +12,6 @@ * to anyone/anything when using this software. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: mrand48.c,v 1.2 1996/08/19 08:33:39 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "rand48.h" extern unsigned short __rand48_seed[3]; diff --git a/src/lib/libc/stdlib/multibyte.c b/src/lib/libc/stdlib/multibyte.c deleted file mode 100644 index ba878b8f..00000000 --- a/src/lib/libc/stdlib/multibyte.c +++ /dev/null @@ -1,120 +0,0 @@ -/* - * Copyright (c) 1991 The Regents of the University of California. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 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. - */ - -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: multibyte.c,v 1.4 2003/06/02 20:18:38 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - -#include - -/* - * Stub multibyte character functions. - * This cheezy implementation is fixed to the native single-byte - * character set. - */ - -int -mblen(s, n) - const char *s; - size_t n; -{ - if (s == NULL || *s == '\0') - return 0; - if (n == 0) - return -1; - return 1; -} - -/*ARGSUSED*/ -int -mbtowc(pwc, s, n) - wchar_t *pwc; - const char *s; - size_t n; -{ - if (s == NULL) - return 0; - if (n == 0) - return -1; - if (pwc) - *pwc = (wchar_t) *s; - return (*s != '\0'); -} - -/*ARGSUSED*/ -int -wctomb(char *s, wchar_t wchar) -{ - if (s == NULL) - return 0; - - *s = (char) wchar; - return 1; -} - -/*ARGSUSED*/ -size_t -mbstowcs(pwcs, s, n) - wchar_t *pwcs; - const char *s; - size_t n; -{ - int count = 0; - - if (n != 0) { - do { - if ((*pwcs++ = (wchar_t) *s++) == 0) - break; - count++; - } while (--n != 0); - } - - return count; -} - -/*ARGSUSED*/ -size_t -wcstombs(s, pwcs, n) - char *s; - const wchar_t *pwcs; - size_t n; -{ - int count = 0; - - if (n != 0) { - do { - if ((*s++ = (char) *pwcs++) == 0) - break; - count++; - } while (--n != 0); - } - - return count; -} - diff --git a/src/lib/libc/stdlib/nrand48.c b/src/lib/libc/stdlib/nrand48.c index b1ec2ceb..f1f548c3 100644 --- a/src/lib/libc/stdlib/nrand48.c +++ b/src/lib/libc/stdlib/nrand48.c @@ -1,3 +1,4 @@ +/* $OpenBSD: nrand48.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -11,10 +12,6 @@ * to anyone/anything when using this software. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: nrand48.c,v 1.2 1996/08/19 08:33:40 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "rand48.h" long diff --git a/src/lib/libc/stdlib/putenv.c b/src/lib/libc/stdlib/putenv.c index 231982bf..54482f6a 100644 --- a/src/lib/libc/stdlib/putenv.c +++ b/src/lib/libc/stdlib/putenv.c @@ -1,3 +1,4 @@ +/* $OpenBSD: putenv.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: putenv.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/qabs.c b/src/lib/libc/stdlib/qabs.c index 4c561b33..656b93c8 100644 --- a/src/lib/libc/stdlib/qabs.c +++ b/src/lib/libc/stdlib/qabs.c @@ -1,3 +1,4 @@ +/* $OpenBSD: qabs.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: qabs.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include quad_t diff --git a/src/lib/libc/stdlib/qdiv.c b/src/lib/libc/stdlib/qdiv.c index 8147ee89..f3db0915 100644 --- a/src/lib/libc/stdlib/qdiv.c +++ b/src/lib/libc/stdlib/qdiv.c @@ -1,3 +1,4 @@ +/* $OpenBSD: qdiv.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1990 Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: qdiv.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* qdiv_t */ qdiv_t diff --git a/src/lib/libc/stdlib/qsort.c b/src/lib/libc/stdlib/qsort.c index 154c51a8..bb4a9a11 100644 --- a/src/lib/libc/stdlib/qsort.c +++ b/src/lib/libc/stdlib/qsort.c @@ -1,3 +1,4 @@ +/* $OpenBSD: qsort.c,v 1.10 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: qsort.c,v 1.9 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/radixsort.c b/src/lib/libc/stdlib/radixsort.c index 96392ea7..0b2ff270 100644 --- a/src/lib/libc/stdlib/radixsort.c +++ b/src/lib/libc/stdlib/radixsort.c @@ -1,3 +1,4 @@ +/* $OpenBSD: radixsort.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: radixsort.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * Radixsort routines. * diff --git a/src/lib/libc/stdlib/rand.c b/src/lib/libc/stdlib/rand.c index 6b27ad46..0f9c1008 100644 --- a/src/lib/libc/stdlib/rand.c +++ b/src/lib/libc/stdlib/rand.c @@ -27,10 +27,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: rand.c,v 1.8 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/random.c b/src/lib/libc/stdlib/random.c index 4ca8735e..565542ec 100644 --- a/src/lib/libc/stdlib/random.c +++ b/src/lib/libc/stdlib/random.c @@ -1,3 +1,4 @@ +/* $OpenBSD: random.c,v 1.14 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: random.c,v 1.13 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/realpath.c b/src/lib/libc/stdlib/realpath.c index 62e06b00..4cb847b3 100644 --- a/src/lib/libc/stdlib/realpath.c +++ b/src/lib/libc/stdlib/realpath.c @@ -1,3 +1,4 @@ +/* $OpenBSD: realpath.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 2003 Constantin S. Svintsoff * @@ -26,15 +27,6 @@ * SUCH DAMAGE. */ -#if 0 -#include -__FBSDID("$FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/lib/libc/stdlib/realpath.c,v 1.9.2.1 2003/05/22 17:11:44 fjoe Exp $"); -#endif - -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: realpath.c,v 1.12 2005/03/29 19:34:14 brad Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/remque.c b/src/lib/libc/stdlib/remque.c index f4c5769a..ae249ae0 100644 --- a/src/lib/libc/stdlib/remque.c +++ b/src/lib/libc/stdlib/remque.c @@ -1,4 +1,4 @@ -/* $OpenBSD: remque.c,v 1.1 2003/05/08 23:26:30 millert Exp $ */ +/* $OpenBSD: remque.c,v 1.2 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1993 John Brezak @@ -28,10 +28,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: remque.c,v 1.1 2003/05/08 23:26:30 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include struct qelem { diff --git a/src/lib/libc/stdlib/seed48.c b/src/lib/libc/stdlib/seed48.c index c4dcd0ea..583262f2 100644 --- a/src/lib/libc/stdlib/seed48.c +++ b/src/lib/libc/stdlib/seed48.c @@ -1,3 +1,4 @@ +/* $OpenBSD: seed48.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -11,10 +12,6 @@ * to anyone/anything when using this software. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: seed48.c,v 1.2 1996/08/19 08:33:48 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "rand48.h" extern unsigned short __rand48_seed[3]; diff --git a/src/lib/libc/stdlib/setenv.c b/src/lib/libc/stdlib/setenv.c index ce0d3f96..36540ebb 100644 --- a/src/lib/libc/stdlib/setenv.c +++ b/src/lib/libc/stdlib/setenv.c @@ -1,3 +1,4 @@ +/* $OpenBSD: setenv.c,v 1.9 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1987 Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: setenv.c,v 1.8 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/srand48.c b/src/lib/libc/stdlib/srand48.c index fcff8a17..f76b6cca 100644 --- a/src/lib/libc/stdlib/srand48.c +++ b/src/lib/libc/stdlib/srand48.c @@ -1,3 +1,4 @@ +/* $OpenBSD: srand48.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -11,10 +12,6 @@ * to anyone/anything when using this software. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: srand48.c,v 1.2 1996/08/19 08:33:49 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "rand48.h" extern unsigned short __rand48_seed[3]; diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c index 94eca886..2f0de36d 100644 --- a/src/lib/libc/stdlib/strtod.c +++ b/src/lib/libc/stdlib/strtod.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strtod.c,v 1.21 2005/08/08 08:05:37 espie Exp $ */ /**************************************************************** * * The author of this software is David M. Gay. @@ -88,10 +89,6 @@ * directly -- and assumed always to succeed. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strtod.c,v 1.20 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \ defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \ diff --git a/src/lib/libc/stdlib/strtol.c b/src/lib/libc/stdlib/strtol.c index 9692bb6b..5a244766 100644 --- a/src/lib/libc/stdlib/strtol.c +++ b/src/lib/libc/stdlib/strtol.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strtol.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strtol.c,v 1.6 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/strtoll.c b/src/lib/libc/stdlib/strtoll.c index fa4d30ef..b9ffc3d4 100644 --- a/src/lib/libc/stdlib/strtoll.c +++ b/src/lib/libc/stdlib/strtoll.c @@ -27,10 +27,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: strtoll.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/strtoul.c b/src/lib/libc/stdlib/strtoul.c index 1faa0abb..d7dddab7 100644 --- a/src/lib/libc/stdlib/strtoul.c +++ b/src/lib/libc/stdlib/strtoul.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strtoul.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1990 Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strtoul.c,v 1.6 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/stdlib/strtoull.c b/src/lib/libc/stdlib/strtoull.c index 5fa841ff..37859776 100644 --- a/src/lib/libc/stdlib/strtoull.c +++ b/src/lib/libc/stdlib/strtoull.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strtoull.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1992 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: strtoull.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/stdlib/system.c b/src/lib/libc/stdlib/system.c index ebf55776..14ddcae8 100644 --- a/src/lib/libc/stdlib/system.c +++ b/src/lib/libc/stdlib/system.c @@ -1,3 +1,4 @@ +/* $OpenBSD: system.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1988 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: system.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/string/bcmp.c b/src/lib/libc/string/bcmp.c index 07d32ed0..a35689a2 100644 --- a/src/lib/libc/string/bcmp.c +++ b/src/lib/libc/string/bcmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bcmp.c,v 1.7 2005/03/30 20:13:52 otto Exp $ */ +/* $OpenBSD: bcmp.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1987 Regents of the University of California. @@ -29,10 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: bcmp.c,v 1.7 2005/03/30 20:13:52 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #if !defined(_KERNEL) && !defined(_STANDALONE) #include #else diff --git a/src/lib/libc/string/bcopy.c b/src/lib/libc/string/bcopy.c index 7b30ab4a..4308c648 100644 --- a/src/lib/libc/string/bcopy.c +++ b/src/lib/libc/string/bcopy.c @@ -1,3 +1,4 @@ +/* $OpenBSD: bcopy.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: bcopy.c,v 1.4 2005/03/30 20:13:52 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* diff --git a/src/lib/libc/string/bm.c b/src/lib/libc/string/bm.c index 6c8e4c34..829c2408 100644 --- a/src/lib/libc/string/bm.c +++ b/src/lib/libc/string/bm.c @@ -1,3 +1,4 @@ +/* $OpenBSD: bm.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1994 * The Regents of the University of California. All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: bm.c,v 1.5 2005/03/30 20:13:52 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/bzero.c b/src/lib/libc/string/bzero.c index 9d8a2cef..4d267d4f 100644 --- a/src/lib/libc/string/bzero.c +++ b/src/lib/libc/string/bzero.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bzero.c,v 1.6 2004/11/28 07:16:54 mickey Exp $ */ +/* $OpenBSD: bzero.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1987 Regents of the University of California. @@ -29,10 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: bzero.c,v 1.6 2004/11/28 07:16:54 mickey Exp $"; -#endif /* LIBC_SCCS and not lint */ - #if !defined(_KERNEL) && !defined(_STANDALONE) #include #else diff --git a/src/lib/libc/string/ffs.c b/src/lib/libc/string/ffs.c index f1d14096..7dec1613 100644 --- a/src/lib/libc/string/ffs.c +++ b/src/lib/libc/string/ffs.c @@ -1,14 +1,10 @@ -/* $OpenBSD: ffs.c,v 1.6 2003/06/11 21:08:16 deraadt Exp $ */ +/* $OpenBSD: ffs.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /* * Public domain. * Written by Dale Rahn. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: ffs.c,v 1.6 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #if !defined(_KERNEL) && !defined(_STANDALONE) #include #else diff --git a/src/lib/libc/string/index.c b/src/lib/libc/string/index.c index 52d0fd46..50e9ca35 100644 --- a/src/lib/libc/string/index.c +++ b/src/lib/libc/string/index.c @@ -1,3 +1,4 @@ +/* $OpenBSD: index.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: index.c,v 1.4 2003/06/02 20:18:38 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include char * diff --git a/src/lib/libc/string/memccpy.c b/src/lib/libc/string/memccpy.c index 265570c5..485c55fc 100644 --- a/src/lib/libc/string/memccpy.c +++ b/src/lib/libc/string/memccpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: memccpy.c,v 1.5 2005/03/30 20:13:52 otto Exp $ */ +/* $OpenBSD: memccpy.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -29,14 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)memccpy.c 8.1 (Berkeley) 6/4/93"; -#else -static char *rcsid = "$OpenBSD: memccpy.c,v 1.5 2005/03/30 20:13:52 otto Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - #include void * diff --git a/src/lib/libc/string/memchr.c b/src/lib/libc/string/memchr.c index 454abcbc..4573e3ce 100644 --- a/src/lib/libc/string/memchr.c +++ b/src/lib/libc/string/memchr.c @@ -1,3 +1,4 @@ +/* $OpenBSD: memchr.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: memchr.c,v 1.6 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include void * diff --git a/src/lib/libc/string/memcmp.c b/src/lib/libc/string/memcmp.c index 6c83208a..49384a6f 100644 --- a/src/lib/libc/string/memcmp.c +++ b/src/lib/libc/string/memcmp.c @@ -1,3 +1,4 @@ +/* $OpenBSD: memcmp.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: memcmp.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* diff --git a/src/lib/libc/string/memset.c b/src/lib/libc/string/memset.c index 9bc0556f..db32866a 100644 --- a/src/lib/libc/string/memset.c +++ b/src/lib/libc/string/memset.c @@ -1,3 +1,4 @@ +/* $OpenBSD: memset.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: memset.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include void * diff --git a/src/lib/libc/string/rindex.c b/src/lib/libc/string/rindex.c index b880d0ea..bf9d6f7c 100644 --- a/src/lib/libc/string/rindex.c +++ b/src/lib/libc/string/rindex.c @@ -1,3 +1,4 @@ +/* $OpenBSD: rindex.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: rindex.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include char * diff --git a/src/lib/libc/string/strcasecmp.c b/src/lib/libc/string/strcasecmp.c index 62da0634..2be09136 100644 --- a/src/lib/libc/string/strcasecmp.c +++ b/src/lib/libc/string/strcasecmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strcasecmp.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $ */ +/* $OpenBSD: strcasecmp.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1987, 1993 @@ -31,14 +31,6 @@ #include -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)strcasecmp.c 8.1 (Berkeley) 6/4/93"; -#else -static char *rcsid = "$OpenBSD: strcasecmp.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - typedef unsigned char u_char; /* diff --git a/src/lib/libc/string/strcasestr.c b/src/lib/libc/string/strcasestr.c index 075e6f19..07c8c2e8 100644 --- a/src/lib/libc/string/strcasestr.c +++ b/src/lib/libc/string/strcasestr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strcasestr.c,v 1.1 2005/03/30 03:04:19 deraadt Exp $ */ +/* $OpenBSD: strcasestr.c,v 1.2 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: strcasestr.c,v 1.2 2005/02/09 21:35:47 kleink Exp $ */ /*- @@ -33,10 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strcasestr.c,v 1.1 2005/03/30 03:04:19 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/strcat.c b/src/lib/libc/string/strcat.c index 4f9734ab..7cea5229 100644 --- a/src/lib/libc/string/strcat.c +++ b/src/lib/libc/string/strcat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strcat.c,v 1.7 2004/11/28 07:16:54 mickey Exp $ */ +/* $OpenBSD: strcat.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. @@ -29,10 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strcat.c,v 1.7 2004/11/28 07:16:54 mickey Exp $"; -#endif /* LIBC_SCCS and not lint */ - #if !defined(_KERNEL) && !defined(_STANDALONE) #include #else diff --git a/src/lib/libc/string/strcmp.c b/src/lib/libc/string/strcmp.c index 0fe34c28..816fd111 100644 --- a/src/lib/libc/string/strcmp.c +++ b/src/lib/libc/string/strcmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strcmp.c,v 1.6 2004/11/28 07:16:54 mickey Exp $ */ +/* $OpenBSD: strcmp.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -32,10 +32,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strcmp.c,v 1.6 2004/11/28 07:16:54 mickey Exp $"; -#endif /* LIBC_SCCS and not lint */ - #if !defined(_KERNEL) && !defined(_STANDALONE) #include #else diff --git a/src/lib/libc/string/strcoll.c b/src/lib/libc/string/strcoll.c index 9622b672..2df983bd 100644 --- a/src/lib/libc/string/strcoll.c +++ b/src/lib/libc/string/strcoll.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strcoll.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strcoll.c,v 1.4 2003/06/11 21:08:29 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* diff --git a/src/lib/libc/string/strcpy.c b/src/lib/libc/string/strcpy.c index 0acd1bba..71d90d41 100644 --- a/src/lib/libc/string/strcpy.c +++ b/src/lib/libc/string/strcpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strcpy.c,v 1.7 2004/11/28 07:16:54 mickey Exp $ */ +/* $OpenBSD: strcpy.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. @@ -29,10 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strcpy.c,v 1.7 2004/11/28 07:16:54 mickey Exp $"; -#endif /* LIBC_SCCS and not lint */ - #if !defined(_KERNEL) && !defined(_STANDALONE) #include #else diff --git a/src/lib/libc/string/strcspn.c b/src/lib/libc/string/strcspn.c index f96f9038..1eb23361 100644 --- a/src/lib/libc/string/strcspn.c +++ b/src/lib/libc/string/strcspn.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strcspn.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strcspn.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* diff --git a/src/lib/libc/string/strdup.c b/src/lib/libc/string/strdup.c index bbea5988..a6aa1e03 100644 --- a/src/lib/libc/string/strdup.c +++ b/src/lib/libc/string/strdup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strdup.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $ */ +/* $OpenBSD: strdup.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1988, 1993 @@ -29,14 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)strdup.c 8.1 (Berkeley) 6/4/93"; -#else -static char *rcsid = "$OpenBSD: strdup.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/strerror.c b/src/lib/libc/string/strerror.c index edb6af73..13996f08 100644 --- a/src/lib/libc/string/strerror.c +++ b/src/lib/libc/string/strerror.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strerror.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strerror.c,v 1.6 2004/05/03 05:07:34 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/strerror_r.c b/src/lib/libc/string/strerror_r.c index 958a88df..85988a25 100644 --- a/src/lib/libc/string/strerror_r.c +++ b/src/lib/libc/string/strerror_r.c @@ -1,10 +1,6 @@ -/* $OpenBSD: strerror_r.c,v 1.5 2005/05/26 12:56:01 otto Exp $ */ +/* $OpenBSD: strerror_r.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ /* Public Domain */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strerror_r.c,v 1.5 2005/05/26 12:56:01 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #ifdef NLS #define catclose _catclose #define catgets _catgets diff --git a/src/lib/libc/string/strlcat.c b/src/lib/libc/string/strlcat.c index 952eed1a..ceab0944 100644 --- a/src/lib/libc/string/strlcat.c +++ b/src/lib/libc/string/strlcat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strlcat.c,v 1.12 2005/03/30 20:13:52 otto Exp $ */ +/* $OpenBSD: strlcat.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1998 Todd C. Miller @@ -16,10 +16,6 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strlcat.c,v 1.12 2005/03/30 20:13:52 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/strlcpy.c b/src/lib/libc/string/strlcpy.c index 09a9c2b3..110155f7 100644 --- a/src/lib/libc/string/strlcpy.c +++ b/src/lib/libc/string/strlcpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strlcpy.c,v 1.9 2005/03/30 20:13:52 otto Exp $ */ +/* $OpenBSD: strlcpy.c,v 1.10 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1998 Todd C. Miller @@ -16,10 +16,6 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strlcpy.c,v 1.9 2005/03/30 20:13:52 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/strlen.c b/src/lib/libc/string/strlen.c index 298a9966..12d9ec4d 100644 --- a/src/lib/libc/string/strlen.c +++ b/src/lib/libc/string/strlen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strlen.c,v 1.6 2003/06/11 21:08:16 deraadt Exp $ */ +/* $OpenBSD: strlen.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -29,10 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strlen.c,v 1.6 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #if !defined(_KERNEL) && !defined(_STANDALONE) #include #else diff --git a/src/lib/libc/string/strmode.c b/src/lib/libc/string/strmode.c index eedd65aa..6f0fa34e 100644 --- a/src/lib/libc/string/strmode.c +++ b/src/lib/libc/string/strmode.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strmode.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strmode.c,v 1.6 2005/06/15 17:48:52 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/src/lib/libc/string/strncat.c b/src/lib/libc/string/strncat.c index 05d35e09..c4df4f2f 100644 --- a/src/lib/libc/string/strncat.c +++ b/src/lib/libc/string/strncat.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strncat.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strncat.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* diff --git a/src/lib/libc/string/strncmp.c b/src/lib/libc/string/strncmp.c index ddab42dc..0aea80d7 100644 --- a/src/lib/libc/string/strncmp.c +++ b/src/lib/libc/string/strncmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strncmp.c,v 1.6 2004/11/28 07:16:54 mickey Exp $ */ +/* $OpenBSD: strncmp.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. @@ -29,10 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strncmp.c,v 1.6 2004/11/28 07:16:54 mickey Exp $"; -#endif /* LIBC_SCCS and not lint */ - #if !defined(_KERNEL) && !defined(_STANDALONE) #include #else diff --git a/src/lib/libc/string/strncpy.c b/src/lib/libc/string/strncpy.c index d73008c6..4426cbe2 100644 --- a/src/lib/libc/string/strncpy.c +++ b/src/lib/libc/string/strncpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strncpy.c,v 1.5 2004/11/28 07:16:54 mickey Exp $ */ +/* $OpenBSD: strncpy.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -32,10 +32,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strncpy.c,v 1.5 2004/11/28 07:16:54 mickey Exp $"; -#endif /* LIBC_SCCS and not lint */ - #if !defined(_KERNEL) && !defined(_STANDALONE) #include #else diff --git a/src/lib/libc/string/strpbrk.c b/src/lib/libc/string/strpbrk.c index 024c42bd..cd3b71c0 100644 --- a/src/lib/libc/string/strpbrk.c +++ b/src/lib/libc/string/strpbrk.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strpbrk.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1985 Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strpbrk.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* diff --git a/src/lib/libc/string/strsep.c b/src/lib/libc/string/strsep.c index 337d78e4..bcca681e 100644 --- a/src/lib/libc/string/strsep.c +++ b/src/lib/libc/string/strsep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strsep.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $ */ +/* $OpenBSD: strsep.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -32,14 +32,6 @@ #include #include -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93"; -#else -static char *rcsid = "$OpenBSD: strsep.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - /* * Get next token from string *stringp, where tokens are possibly-empty * strings separated by characters from delim. diff --git a/src/lib/libc/string/strsignal.c b/src/lib/libc/string/strsignal.c index afe0deb2..aa541cef 100644 --- a/src/lib/libc/string/strsignal.c +++ b/src/lib/libc/string/strsignal.c @@ -27,10 +27,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strsignal.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/strspn.c b/src/lib/libc/string/strspn.c index d51a8cd3..385649c0 100644 --- a/src/lib/libc/string/strspn.c +++ b/src/lib/libc/string/strspn.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strspn.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. * All rights reserved. @@ -27,10 +28,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strspn.c,v 1.4 2003/06/11 21:08:29 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* diff --git a/src/lib/libc/string/strstr.c b/src/lib/libc/string/strstr.c index e6a94c5c..95a865bf 100644 --- a/src/lib/libc/string/strstr.c +++ b/src/lib/libc/string/strstr.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strstr.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strstr.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* diff --git a/src/lib/libc/string/strtok.c b/src/lib/libc/string/strtok.c index 6498eac8..4e963a01 100644 --- a/src/lib/libc/string/strtok.c +++ b/src/lib/libc/string/strtok.c @@ -27,10 +27,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strtok.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include char * diff --git a/src/lib/libc/string/strxfrm.c b/src/lib/libc/string/strxfrm.c index a2e2dbc4..6f289c90 100644 --- a/src/lib/libc/string/strxfrm.c +++ b/src/lib/libc/string/strxfrm.c @@ -1,3 +1,4 @@ +/* $OpenBSD: strxfrm.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strxfrm.c,v 1.5 2003/09/06 22:43:12 tedu Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include /* diff --git a/src/lib/libc/string/swab.c b/src/lib/libc/string/swab.c index 0129561a..b53717dc 100644 --- a/src/lib/libc/string/swab.c +++ b/src/lib/libc/string/swab.c @@ -1,3 +1,4 @@ +/* $OpenBSD: swab.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. * All rights reserved. @@ -30,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: swab.c,v 1.6 2005/03/30 20:13:52 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include void diff --git a/src/lib/libc/string/wcscat.c b/src/lib/libc/string/wcscat.c index 80de3f0d..a4841a97 100644 --- a/src/lib/libc/string/wcscat.c +++ b/src/lib/libc/string/wcscat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcscat.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcscat.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcscat.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcscat.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcscat.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #if defined(APIWARN) diff --git a/src/lib/libc/string/wcschr.c b/src/lib/libc/string/wcschr.c index 80861225..c06127e0 100644 --- a/src/lib/libc/string/wcschr.c +++ b/src/lib/libc/string/wcschr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcschr.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcschr.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcschr.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcschr.c,v 1.2 2000/12/21 05:07:25 itojun Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcschr.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include wchar_t * diff --git a/src/lib/libc/string/wcscmp.c b/src/lib/libc/string/wcscmp.c index ebbb87ca..4a8f6ba3 100644 --- a/src/lib/libc/string/wcscmp.c +++ b/src/lib/libc/string/wcscmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcscmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $ */ +/* $OpenBSD: wcscmp.c,v 1.4 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcscmp.c,v 1.5 2003/08/07 16:43:54 agc Exp $ */ /*- @@ -33,10 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcscmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include "locale/runetype.h" diff --git a/src/lib/libc/string/wcscpy.c b/src/lib/libc/string/wcscpy.c index e5bf8b0d..75fdb75f 100644 --- a/src/lib/libc/string/wcscpy.c +++ b/src/lib/libc/string/wcscpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcscpy.c,v 1.3 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcscpy.c,v 1.4 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcscpy.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcscpy.c,v 1.2 2000/12/21 04:51:09 itojun Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcscpy.c,v 1.3 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #if defined(APIWARN) diff --git a/src/lib/libc/string/wcscspn.c b/src/lib/libc/string/wcscspn.c index 59a95101..cf400924 100644 --- a/src/lib/libc/string/wcscspn.c +++ b/src/lib/libc/string/wcscspn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcscspn.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcscspn.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcscspn.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcscspn.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcscspn.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include size_t diff --git a/src/lib/libc/string/wcslcat.c b/src/lib/libc/string/wcslcat.c index e74d52f4..bcd52d1f 100644 --- a/src/lib/libc/string/wcslcat.c +++ b/src/lib/libc/string/wcslcat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcslcat.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcslcat.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcslcat.c,v 1.2 2001/01/03 14:33:02 lukem Exp $ */ /* from OpenBSD: strlcat.c,v 1.3 2000/11/24 11:10:02 itojun Exp */ @@ -29,10 +29,6 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcslcat.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/wcslcpy.c b/src/lib/libc/string/wcslcpy.c index a6acb80d..4a9afffd 100644 --- a/src/lib/libc/string/wcslcpy.c +++ b/src/lib/libc/string/wcslcpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcslcpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcslcpy.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcslcpy.c,v 1.2 2001/01/03 14:33:02 lukem Exp $ */ /* from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */ @@ -29,10 +29,6 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcslcpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/wcslen.c b/src/lib/libc/string/wcslen.c index 8bd5b5d0..c1de4a27 100644 --- a/src/lib/libc/string/wcslen.c +++ b/src/lib/libc/string/wcslen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcslen.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcslen.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcslen.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcslen.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcslen.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include size_t diff --git a/src/lib/libc/string/wcsncat.c b/src/lib/libc/string/wcsncat.c index b8e000c8..eb9a7015 100644 --- a/src/lib/libc/string/wcsncat.c +++ b/src/lib/libc/string/wcsncat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcsncat.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcsncat.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcsncat.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcsncat.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcsncat.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include wchar_t * diff --git a/src/lib/libc/string/wcsncmp.c b/src/lib/libc/string/wcsncmp.c index 30d37f66..fb3c7057 100644 --- a/src/lib/libc/string/wcsncmp.c +++ b/src/lib/libc/string/wcsncmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcsncmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $ */ +/* $OpenBSD: wcsncmp.c,v 1.4 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcsncmp.c,v 1.5 2003/08/07 16:43:54 agc Exp $ */ /* @@ -30,10 +30,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcsncmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include "locale/runetype.h" diff --git a/src/lib/libc/string/wcsncpy.c b/src/lib/libc/string/wcsncpy.c index 2bf020e2..5da7edb0 100644 --- a/src/lib/libc/string/wcsncpy.c +++ b/src/lib/libc/string/wcsncpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcsncpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcsncpy.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcsncpy.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcsncpy.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcsncpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include wchar_t * diff --git a/src/lib/libc/string/wcspbrk.c b/src/lib/libc/string/wcspbrk.c index 943057a2..1923abfc 100644 --- a/src/lib/libc/string/wcspbrk.c +++ b/src/lib/libc/string/wcspbrk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcspbrk.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcspbrk.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcspbrk.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcspbrk.c,v 1.2 2000/12/21 05:07:25 itojun Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcspbrk.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include wchar_t * diff --git a/src/lib/libc/string/wcsrchr.c b/src/lib/libc/string/wcsrchr.c index ced0fe3a..3433310c 100644 --- a/src/lib/libc/string/wcsrchr.c +++ b/src/lib/libc/string/wcsrchr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcsrchr.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcsrchr.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcsrchr.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcsrchr.c,v 1.2 2000/12/21 05:07:25 itojun Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcsrchr.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include wchar_t * diff --git a/src/lib/libc/string/wcsspn.c b/src/lib/libc/string/wcsspn.c index 80f315f0..5162fa07 100644 --- a/src/lib/libc/string/wcsspn.c +++ b/src/lib/libc/string/wcsspn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcsspn.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcsspn.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcsspn.c,v 1.3 2001/09/21 16:09:15 yamt Exp $ */ /*- @@ -29,10 +29,6 @@ * $Citrus: xpg4dl/FreeBSD/lib/libc/string/wcsspn.c,v 1.3 2001/09/21 16:06:43 yamt Exp $ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcsspn.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include size_t diff --git a/src/lib/libc/string/wcsstr.c b/src/lib/libc/string/wcsstr.c index 9f330300..669e3402 100644 --- a/src/lib/libc/string/wcsstr.c +++ b/src/lib/libc/string/wcsstr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcsstr.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcsstr.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcsstr.c,v 1.3 2003/03/05 20:18:17 tshiozak Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcsstr.c,v 1.2 2000/12/21 05:07:25 itojun Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcsstr.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include wchar_t * diff --git a/src/lib/libc/string/wcstok.c b/src/lib/libc/string/wcstok.c index 619aea8a..bc1ac3e8 100644 --- a/src/lib/libc/string/wcstok.c +++ b/src/lib/libc/string/wcstok.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcstok.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcstok.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcstok.c,v 1.3 2003/07/10 08:50:48 tshiozak Exp $ */ /*- @@ -42,10 +42,6 @@ * FreeBSD: src/lib/libc/string/wcstok.c,v 1.1 2002/09/07 08:16:57 tjr Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcstok.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include wchar_t * diff --git a/src/lib/libc/string/wcswidth.c b/src/lib/libc/string/wcswidth.c index ff6b4e1d..cd240897 100644 --- a/src/lib/libc/string/wcswidth.c +++ b/src/lib/libc/string/wcswidth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcswidth.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wcswidth.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wcswidth.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wcswidth.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcswidth.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include int diff --git a/src/lib/libc/string/wmemchr.c b/src/lib/libc/string/wmemchr.c index f3b8023c..8c951786 100644 --- a/src/lib/libc/string/wmemchr.c +++ b/src/lib/libc/string/wmemchr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wmemchr.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wmemchr.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wmemchr.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wmemchr.c,v 1.2 2000/12/20 14:08:31 itojun Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wmemchr.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include wchar_t * diff --git a/src/lib/libc/string/wmemcmp.c b/src/lib/libc/string/wmemcmp.c index e35c6207..39419aed 100644 --- a/src/lib/libc/string/wmemcmp.c +++ b/src/lib/libc/string/wmemcmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wmemcmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $ */ +/* $OpenBSD: wmemcmp.c,v 1.4 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wmemcmp.c,v 1.3 2003/04/06 18:33:23 tshiozak Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wmemcmp.c,v 1.2 2000/12/20 14:08:31 itojun Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wmemcmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include "locale/runetype.h" diff --git a/src/lib/libc/string/wmemcpy.c b/src/lib/libc/string/wmemcpy.c index 6e7e0304..9bbd8364 100644 --- a/src/lib/libc/string/wmemcpy.c +++ b/src/lib/libc/string/wmemcpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wmemcpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wmemcpy.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wmemcpy.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wmemcpy.c,v 1.2 2000/12/20 14:08:31 itojun Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wmemcpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/wmemmove.c b/src/lib/libc/string/wmemmove.c index 5de24306..21bbabcd 100644 --- a/src/lib/libc/string/wmemmove.c +++ b/src/lib/libc/string/wmemmove.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wmemmove.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wmemmove.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wmemmove.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wmemmove.c,v 1.2 2000/12/20 14:08:31 itojun Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wmemmove.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include #include diff --git a/src/lib/libc/string/wmemset.c b/src/lib/libc/string/wmemset.c index 9db63f05..ac476dba 100644 --- a/src/lib/libc/string/wmemset.c +++ b/src/lib/libc/string/wmemset.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wmemset.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ +/* $OpenBSD: wmemset.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wmemset.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ /*- @@ -29,10 +29,6 @@ * citrus Id: wmemset.c,v 1.2 2000/12/20 14:08:31 itojun Exp */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wmemset.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include wchar_t *