From d7398a270c9cd1b7b4d545ed70ea24384781a86c Mon Sep 17 00:00:00 2001 From: espie <> Date: Mon, 8 Aug 2005 08:05:37 +0000 Subject: zap remaining rcsid. Kill old files that are no longer compiled. okay theo --- src/lib/libc/stdlib/_Exit.c | 6 +- src/lib/libc/stdlib/_rand48.c | 5 +- src/lib/libc/stdlib/a64l.c | 5 +- src/lib/libc/stdlib/abort.c | 5 +- src/lib/libc/stdlib/abs.c | 5 +- src/lib/libc/stdlib/atexit.c | 5 +- src/lib/libc/stdlib/atof.c | 5 +- src/lib/libc/stdlib/atoi.c | 5 +- src/lib/libc/stdlib/atol.c | 5 +- src/lib/libc/stdlib/atoll.c | 5 +- src/lib/libc/stdlib/bsearch.c | 4 -- src/lib/libc/stdlib/calloc.c | 5 +- src/lib/libc/stdlib/cfree.c | 6 +- src/lib/libc/stdlib/div.c | 5 +- src/lib/libc/stdlib/drand48.c | 5 +- src/lib/libc/stdlib/ecvt.c | 6 +- src/lib/libc/stdlib/erand48.c | 5 +- src/lib/libc/stdlib/exit.c | 5 +- src/lib/libc/stdlib/gcvt.c | 6 +- src/lib/libc/stdlib/getenv.c | 5 +- src/lib/libc/stdlib/getopt_long.c | 6 +- src/lib/libc/stdlib/getsubopt.c | 10 +--- src/lib/libc/stdlib/hcreate.c | 11 +--- src/lib/libc/stdlib/heapsort.c | 4 -- src/lib/libc/stdlib/insque.c | 6 +- src/lib/libc/stdlib/jrand48.c | 5 +- src/lib/libc/stdlib/l64a.c | 5 +- src/lib/libc/stdlib/labs.c | 5 +- src/lib/libc/stdlib/lcong48.c | 5 +- src/lib/libc/stdlib/ldiv.c | 5 +- src/lib/libc/stdlib/llabs.c | 9 +-- src/lib/libc/stdlib/lrand48.c | 5 +- src/lib/libc/stdlib/malloc.c | 5 +- src/lib/libc/stdlib/merge.c | 5 +- src/lib/libc/stdlib/mrand48.c | 5 +- src/lib/libc/stdlib/multibyte.c | 120 -------------------------------------- src/lib/libc/stdlib/nrand48.c | 5 +- src/lib/libc/stdlib/putenv.c | 5 +- src/lib/libc/stdlib/qabs.c | 5 +- src/lib/libc/stdlib/qdiv.c | 5 +- src/lib/libc/stdlib/qsort.c | 5 +- src/lib/libc/stdlib/radixsort.c | 5 +- src/lib/libc/stdlib/rand.c | 4 -- src/lib/libc/stdlib/random.c | 5 +- src/lib/libc/stdlib/realpath.c | 10 +--- src/lib/libc/stdlib/remque.c | 6 +- src/lib/libc/stdlib/seed48.c | 5 +- src/lib/libc/stdlib/setenv.c | 5 +- src/lib/libc/stdlib/srand48.c | 5 +- src/lib/libc/stdlib/strtod.c | 5 +- src/lib/libc/stdlib/strtol.c | 5 +- src/lib/libc/stdlib/strtoll.c | 4 -- src/lib/libc/stdlib/strtoul.c | 5 +- src/lib/libc/stdlib/strtoull.c | 5 +- src/lib/libc/stdlib/system.c | 5 +- 55 files changed, 52 insertions(+), 361 deletions(-) delete mode 100644 src/lib/libc/stdlib/multibyte.c (limited to 'src/lib/libc/stdlib') diff --git a/src/lib/libc/stdlib/_Exit.c b/src/lib/libc/stdlib/_Exit.c index 784015a21d..5a2291a931 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 fed7372f68..7c950f7cee 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 518bdb64f9..5312929c6f 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 2430c124f9..072a9fa8c1 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 a471ab3a1e..5d2fbae69f 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 0bffc05344..019b901575 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 2724530231..d14b58b070 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 ea821ced3d..b0842678e2 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 38236b556c..1970804401 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 6786b62e1a..a65e682cfb 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 109211da92..8193d27c60 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 7aabed235f..7105141db8 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 db1fa56039..373c7ff75d 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 32c53dff03..f7ac2db4b0 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 02886d5b62..b6c046c831 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 657c531808..9289b3bf8a 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 b92dacffcc..2ffeaa6e71 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 a0960e83c4..90b7d5adc2 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 9fd664b346..849af60304 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 7e4d6b91a9..72367b34e2 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 6ddc8e2060..1bf7996998 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 dfd7a50bd8..735c85ba8a 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 14e6fa41f2..e9b5ceed11 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 dcc0c8baad..e6fb61ba2f 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 549246c71f..8724efec74 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 99cddb71e5..cb8c592750 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 325b41b33b..4f33df37b2 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 1dc8b0184a..ca60b9aba2 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 44bd74e48a..2cf5c271ba 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 bbb539a68b..775065f525 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 9611b5aefd..0a0ff784af 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 6b7524a51b..21beb858ca 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 5a328b0eb0..65675456ec 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 b193ae345c..623f652134 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 cd34260b5c..977264aba5 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 ba878b8fdc..0000000000 --- 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 b1ec2cebb1..f1f548c3af 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 231982bf87..54482f6a14 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 4c561b3351..656b93c822 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 8147ee89a6..f3db0915ed 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 154c51a86c..bb4a9a11f2 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 96392ea73a..0b2ff27044 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 6b27ad46d3..0f9c100807 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 4ca8735e75..565542ecdb 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 62e06b00be..4cb847b313 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 f4c5769a8c..ae249ae053 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 c4dcd0ead8..583262f2d5 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 ce0d3f9699..36540ebb0c 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 fcff8a172e..f76b6cca86 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 94eca88659..2f0de36d90 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 9692bb6b07..5a244766db 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 fa4d30ef5a..b9ffc3d47a 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 1faa0abbd0..d7dddab778 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 5fa841fff7..37859776f9 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 ebf5577674..14ddcae8d3 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 -- cgit v1.2.3-55-g6feb