diff options
Diffstat (limited to 'lib/libc/gen')
102 files changed, 100 insertions, 454 deletions
diff --git a/lib/libc/gen/_sys_errlist.c b/lib/libc/gen/_sys_errlist.c index 37011c992d1..491fd6be9f2 100644 --- a/lib/libc/gen/_sys_errlist.c +++ b/lib/libc/gen/_sys_errlist.c @@ -1,12 +1,9 @@ +/* $OpenBSD: _sys_errlist.c,v 1.3 2005/08/08 08:05:33 espie Exp $ */ /* * Written by J.T. Conklin, December 12, 1994 * Public domain. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: _sys_errlist.c,v 1.2 1996/08/19 08:21:24 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #ifdef __indr_reference @@ -16,18 +13,14 @@ __indr_reference(_sys_errlist, __sys_errlist); /* Backwards compat with v.12 */ #undef _sys_errlist #undef _sys_nerr -#undef rcsid #define _sys_errlist sys_errlist #define _sys_nerr sys_nerr -#define rcsid _rcsid #include "errlist.c" #undef _sys_errlist #undef _sys_nerr -#undef rcsid #define _sys_errlist __sys_errlist #define _sys_nerr __sys_nerr -#define rcsid __rcsid #include "errlist.c" #endif diff --git a/lib/libc/gen/_sys_nerr.c b/lib/libc/gen/_sys_nerr.c index 24b9da928ce..fac273f8570 100644 --- a/lib/libc/gen/_sys_nerr.c +++ b/lib/libc/gen/_sys_nerr.c @@ -1,12 +1,9 @@ +/* $OpenBSD: _sys_nerr.c,v 1.3 2005/08/08 08:05:33 espie Exp $ */ /* * Written by J.T. Conklin, December 12, 1994 * Public domain. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: _sys_nerr.c,v 1.2 1996/08/19 08:21:25 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #ifdef __indr_reference diff --git a/lib/libc/gen/_sys_siglist.c b/lib/libc/gen/_sys_siglist.c index 063571d9737..2005c32908d 100644 --- a/lib/libc/gen/_sys_siglist.c +++ b/lib/libc/gen/_sys_siglist.c @@ -1,12 +1,9 @@ +/* $OpenBSD: _sys_siglist.c,v 1.3 2005/08/08 08:05:33 espie Exp $ */ /* * Written by J.T. Conklin, December 12, 1994 * Public domain. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: _sys_siglist.c,v 1.2 1996/08/19 08:21:27 tholo Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #ifdef __indr_reference @@ -15,15 +12,11 @@ __indr_reference(_sys_siglist, __sys_siglist); /* Backwards compat with v.12 */ #else #undef _sys_siglist -#undef rcsid #define _sys_siglist sys_siglist -#define rcsid _rcsid #include "siglist.c" #undef _sys_siglist -#undef rcsid #define _sys_siglist __sys_siglist -#define rcsid __rcsid #include "siglist.c" #endif diff --git a/lib/libc/gen/alarm.c b/lib/libc/gen/alarm.c index 98cdaa2e592..2af847a46a3 100644 --- a/lib/libc/gen/alarm.c +++ b/lib/libc/gen/alarm.c @@ -1,3 +1,4 @@ +/* $OpenBSD: alarm.c,v 1.7 2005/08/08 08:05:33 espie Exp $ */ /* * Copyright (c) 1983, 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: alarm.c,v 1.6 2005/03/25 15:38:46 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * Backwards compatible alarm. */ diff --git a/lib/libc/gen/assert.c b/lib/libc/gen/assert.c index fe48bc68535..816b050cfaf 100644 --- a/lib/libc/gen/assert.c +++ b/lib/libc/gen/assert.c @@ -1,3 +1,4 @@ +/* $OpenBSD: assert.c,v 1.8 2005/08/08 08:05:33 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: assert.c,v 1.7 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <assert.h> #include <stdio.h> diff --git a/lib/libc/gen/basename.c b/lib/libc/gen/basename.c index cae56237afd..d5a915e3d25 100644 --- a/lib/libc/gen/basename.c +++ b/lib/libc/gen/basename.c @@ -1,4 +1,4 @@ -/* $OpenBSD: basename.c,v 1.13 2005/03/02 12:27:26 millert Exp $ */ +/* $OpenBSD: basename.c,v 1.14 2005/08/08 08:05:33 espie Exp $ */ /* * Copyright (c) 1997, 2004 Todd C. Miller <Todd.Miller@courtesan.com> @@ -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: basename.c,v 1.13 2005/03/02 12:27:26 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <libgen.h> #include <string.h> diff --git a/lib/libc/gen/clock.c b/lib/libc/gen/clock.c index 58e5b48523a..9279457a29a 100644 --- a/lib/libc/gen/clock.c +++ b/lib/libc/gen/clock.c @@ -1,3 +1,4 @@ +/* $OpenBSD: clock.c,v 1.5 2005/08/08 08:05:33 espie Exp $ */ /* * Copyright (c) 1989, 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: clock.c,v 1.4 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/time.h> #include <sys/resource.h> diff --git a/lib/libc/gen/closedir.c b/lib/libc/gen/closedir.c index c84b43dd10d..f43d5adfbd8 100644 --- a/lib/libc/gen/closedir.c +++ b/lib/libc/gen/closedir.c @@ -1,3 +1,4 @@ +/* $OpenBSD: closedir.c,v 1.6 2005/08/08 08:05:33 espie Exp $ */ /* * Copyright (c) 1983, 1993 * 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: closedir.c,v 1.5 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <dirent.h> #include <stdlib.h> diff --git a/lib/libc/gen/confstr.c b/lib/libc/gen/confstr.c index 0931d1a7f29..7a3c1755a18 100644 --- a/lib/libc/gen/confstr.c +++ b/lib/libc/gen/confstr.c @@ -1,3 +1,4 @@ +/* $OpenBSD: confstr.c,v 1.7 2005/08/08 08:05:33 espie Exp $ */ /*- * Copyright (c) 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: confstr.c,v 1.6 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/sysctl.h> diff --git a/lib/libc/gen/ctermid.c b/lib/libc/gen/ctermid.c index 31eb63e6c4b..4206dd0c6b4 100644 --- a/lib/libc/gen/ctermid.c +++ b/lib/libc/gen/ctermid.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ctermid.c,v 1.6 2005/08/08 08:05:33 espie Exp $ */ /*- * Copyright (c) 1990, 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: ctermid.c,v 1.5 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdio.h> #include <paths.h> #include <string.h> diff --git a/lib/libc/gen/ctype_.c b/lib/libc/gen/ctype_.c index 7f7c0adb3c8..43b6ca6b043 100644 --- a/lib/libc/gen/ctype_.c +++ b/lib/libc/gen/ctype_.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ctype_.c,v 1.9 2005/08/08 08:05:33 espie Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. * All rights reserved. @@ -32,10 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: ctype_.c,v 1.8 2005/08/08 05:53:00 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <ctype.h> #include "ctype_private.h" diff --git a/lib/libc/gen/daemon.c b/lib/libc/gen/daemon.c index 87af2fc9fa2..e1dc98e10b2 100644 --- a/lib/libc/gen/daemon.c +++ b/lib/libc/gen/daemon.c @@ -1,3 +1,4 @@ +/* $OpenBSD: daemon.c,v 1.6 2005/08/08 08:05:33 espie Exp $ */ /*- * Copyright (c) 1990, 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: daemon.c,v 1.5 2003/07/15 17:32:41 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <fcntl.h> #include <paths.h> #include <unistd.h> diff --git a/lib/libc/gen/devname.c b/lib/libc/gen/devname.c index 88c48841c22..6c2e08e18b8 100644 --- a/lib/libc/gen/devname.c +++ b/lib/libc/gen/devname.c @@ -1,3 +1,4 @@ +/* $OpenBSD: devname.c,v 1.6 2005/08/08 08:05:33 espie Exp $ */ /* * Copyright (c) 1989, 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: devname.c,v 1.5 2003/07/15 17:32:41 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <db.h> diff --git a/lib/libc/gen/dirname.c b/lib/libc/gen/dirname.c index bcac0824e6e..11007ee0df6 100644 --- a/lib/libc/gen/dirname.c +++ b/lib/libc/gen/dirname.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dirname.c,v 1.12 2005/03/02 12:27:26 millert Exp $ */ +/* $OpenBSD: dirname.c,v 1.13 2005/08/08 08:05:33 espie Exp $ */ /* * Copyright (c) 1997, 2004 Todd C. Miller <Todd.Miller@courtesan.com> @@ -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: dirname.c,v 1.12 2005/03/02 12:27:26 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <libgen.h> #include <string.h> diff --git a/lib/libc/gen/disklabel.c b/lib/libc/gen/disklabel.c index 500f7ef1c93..818b482d4f3 100644 --- a/lib/libc/gen/disklabel.c +++ b/lib/libc/gen/disklabel.c @@ -27,10 +27,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: disklabel.c,v 1.10 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #define DKTYPENAMES #include <sys/disklabel.h> diff --git a/lib/libc/gen/elf_hash.c b/lib/libc/gen/elf_hash.c index 18a3e1d33d2..5feb9c58a2e 100644 --- a/lib/libc/gen/elf_hash.c +++ b/lib/libc/gen/elf_hash.c @@ -1,3 +1,4 @@ +/* $OpenBSD: elf_hash.c,v 1.8 2005/08/08 08:05:33 espie Exp $ */ /* * Copyright (c) 1995, 1996 Erik Theisen * All rights reserved. @@ -25,10 +26,6 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: elf_hash.c,v 1.7 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/param.h> #include <sys/mman.h> diff --git a/lib/libc/gen/err.c b/lib/libc/gen/err.c index 3d02c526840..3ee4bbcdc88 100644 --- a/lib/libc/gen/err.c +++ b/lib/libc/gen/err.c @@ -1,3 +1,4 @@ +/* $OpenBSD: err.c,v 1.9 2005/08/08 08:05:33 espie Exp $ */ /*- * Copyright (c) 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: err.c,v 1.8 2003/06/02 20:18:34 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <err.h> #include <stdarg.h> diff --git a/lib/libc/gen/errlist.c b/lib/libc/gen/errlist.c index c803280996f..59117fff59b 100644 --- a/lib/libc/gen/errlist.c +++ b/lib/libc/gen/errlist.c @@ -1,3 +1,4 @@ +/* $OpenBSD: errlist.c,v 1.9 2005/08/08 08:05:33 espie Exp $ */ /* * Copyright (c) 1982, 1985, 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: errlist.c,v 1.8 2005/06/17 20:40:32 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #ifdef lint char * #else diff --git a/lib/libc/gen/errno.c b/lib/libc/gen/errno.c index ddbe778702a..62c0978c6aa 100644 --- a/lib/libc/gen/errno.c +++ b/lib/libc/gen/errno.c @@ -1,9 +1,6 @@ +/* $OpenBSD: errno.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /* PUBLIC DOMAIN: No Rights Reserved. Marco S Hyman <marc@snafu.org> */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: errno.c,v 1.4 2004/07/17 20:38:43 marc Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #undef errno diff --git a/lib/libc/gen/errx.c b/lib/libc/gen/errx.c index 952b6baaa10..964ff8a3940 100644 --- a/lib/libc/gen/errx.c +++ b/lib/libc/gen/errx.c @@ -1,3 +1,4 @@ +/* $OpenBSD: errx.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 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: errx.c,v 1.7 2003/06/02 20:18:34 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <err.h> #include <stdarg.h> diff --git a/lib/libc/gen/exec.c b/lib/libc/gen/exec.c index bf88259177e..08f8153064a 100644 --- a/lib/libc/gen/exec.c +++ b/lib/libc/gen/exec.c @@ -1,3 +1,4 @@ +/* $OpenBSD: exec.c,v 1.18 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1991, 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: exec.c,v 1.17 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/types.h> #include <sys/uio.h> diff --git a/lib/libc/gen/fnmatch.c b/lib/libc/gen/fnmatch.c index d41944ad82f..551ba56419e 100644 --- a/lib/libc/gen/fnmatch.c +++ b/lib/libc/gen/fnmatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fnmatch.c,v 1.11 2004/05/18 02:05:52 jfb Exp $ */ +/* $OpenBSD: fnmatch.c,v 1.12 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 1993, 1994 @@ -32,14 +32,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94"; -#else -static char rcsid[] = "$OpenBSD: fnmatch.c,v 1.11 2004/05/18 02:05:52 jfb Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - /* * Function fnmatch() as specified in POSIX 1003.2-1992, section B.6. * Compares a filename or pathname to a pattern. diff --git a/lib/libc/gen/frexp.c b/lib/libc/gen/frexp.c index 95c73a32d07..737611a52f9 100644 --- a/lib/libc/gen/frexp.c +++ b/lib/libc/gen/frexp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: frexp.c,v 1.1 2005/02/01 15:12:28 millert Exp $ */ +/* $OpenBSD: frexp.c,v 1.2 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 2004 David Schultz <das@FreeBSD.ORG> @@ -28,10 +28,6 @@ * $FreeBSD: frexp.c,v 1.1 2004/07/18 21:23:39 das Exp $ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: frexp.c,v 1.1 2005/02/01 15:12:28 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <machine/ieee.h> #include <math.h> diff --git a/lib/libc/gen/fstab.c b/lib/libc/gen/fstab.c index 3acb1e7e6e9..731068c17b1 100644 --- a/lib/libc/gen/fstab.c +++ b/lib/libc/gen/fstab.c @@ -1,3 +1,4 @@ +/* $OpenBSD: fstab.c,v 1.15 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1980, 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: fstab.c,v 1.14 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/uio.h> #include <sys/stat.h> diff --git a/lib/libc/gen/ftok.c b/lib/libc/gen/ftok.c index a1feadad03e..f9d6621283c 100644 --- a/lib/libc/gen/ftok.c +++ b/lib/libc/gen/ftok.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ftok.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> * All rights reserved. @@ -25,10 +26,6 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: ftok.c,v 1.6 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> #include <sys/ipc.h> diff --git a/lib/libc/gen/fts.c b/lib/libc/gen/fts.c index be94a04faaa..5b8b60957db 100644 --- a/lib/libc/gen/fts.c +++ b/lib/libc/gen/fts.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fts.c,v 1.36 2005/06/17 20:36:55 millert Exp $ */ +/* $OpenBSD: fts.c,v 1.37 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -29,14 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)fts.c 8.6 (Berkeley) 8/14/94"; -#else -static char rcsid[] = "$OpenBSD: fts.c,v 1.36 2005/06/17 20:36:55 millert Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/stat.h> diff --git a/lib/libc/gen/ftw.c b/lib/libc/gen/ftw.c index e6bc09c2f11..b25ea2d719a 100644 --- a/lib/libc/gen/ftw.c +++ b/lib/libc/gen/ftw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ftw.c,v 1.4 2004/07/07 16:05:23 millert Exp $ */ +/* $OpenBSD: ftw.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com> @@ -20,10 +20,6 @@ * Materiel Command, USAF, under agreement number F39502-99-1-0512. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: ftw.c,v 1.4 2004/07/07 16:05:23 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> #include <errno.h> diff --git a/lib/libc/gen/getbsize.c b/lib/libc/gen/getbsize.c index e7fbff9bbab..0e23ed3c91d 100644 --- a/lib/libc/gen/getbsize.c +++ b/lib/libc/gen/getbsize.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getbsize.c,v 1.10 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1991, 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: getbsize.c,v 1.9 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* not lint */ - #include <err.h> #include <stdio.h> #include <stdlib.h> diff --git a/lib/libc/gen/getcap.c b/lib/libc/gen/getcap.c index 38b5172a1d8..65d0696ca1d 100644 --- a/lib/libc/gen/getcap.c +++ b/lib/libc/gen/getcap.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getcap.c,v 1.23 2005/08/08 08:05:34 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 const char rcsid[] = "$OpenBSD: getcap.c,v 1.22 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <ctype.h> diff --git a/lib/libc/gen/getcwd.c b/lib/libc/gen/getcwd.c index 5b9d5c6a609..d0d3446578c 100644 --- a/lib/libc/gen/getcwd.c +++ b/lib/libc/gen/getcwd.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getcwd.c,v 1.14 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 1991, 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: getcwd.c,v 1.13 2005/06/01 18:55:59 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/stat.h> diff --git a/lib/libc/gen/getdomainname.c b/lib/libc/gen/getdomainname.c index d5ef087abc8..ce8c1aaef82 100644 --- a/lib/libc/gen/getdomainname.c +++ b/lib/libc/gen/getdomainname.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getdomainname.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: getdomainname.c,v 1.6 2003/07/15 17:32:41 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/sysctl.h> #include <unistd.h> diff --git a/lib/libc/gen/getgrent.c b/lib/libc/gen/getgrent.c index 82b75126bf0..fc9036ce599 100644 --- a/lib/libc/gen/getgrent.c +++ b/lib/libc/gen/getgrent.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getgrent.c,v 1.23 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. @@ -28,10 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getgrent.c,v 1.22 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/param.h> #include <stdio.h> diff --git a/lib/libc/gen/getgrouplist.c b/lib/libc/gen/getgrouplist.c index d70acb783ec..800364c1a31 100644 --- a/lib/libc/gen/getgrouplist.c +++ b/lib/libc/gen/getgrouplist.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getgrouplist.c,v 1.12 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1991, 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: getgrouplist.c,v 1.11 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * get credential */ diff --git a/lib/libc/gen/gethostname.c b/lib/libc/gen/gethostname.c index 1a8015b52d7..4b01b8bb79c 100644 --- a/lib/libc/gen/gethostname.c +++ b/lib/libc/gen/gethostname.c @@ -1,3 +1,4 @@ +/* $OpenBSD: gethostname.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: gethostname.c,v 1.6 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/sysctl.h> #include <unistd.h> diff --git a/lib/libc/gen/getloadavg.c b/lib/libc/gen/getloadavg.c index 6dfad0310b6..0b38042fec7 100644 --- a/lib/libc/gen/getloadavg.c +++ b/lib/libc/gen/getloadavg.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getloadavg.c,v 1.6 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1989, 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: getloadavg.c,v 1.5 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/time.h> #include <sys/resource.h> diff --git a/lib/libc/gen/getlogin.c b/lib/libc/gen/getlogin.c index 7810dc8aad3..e6a0c285b43 100644 --- a/lib/libc/gen/getlogin.c +++ b/lib/libc/gen/getlogin.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getlogin.c,v 1.10 2005/08/08 08:05:34 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: getlogin.c,v 1.9 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <pwd.h> #include <utmp.h> diff --git a/lib/libc/gen/getmntinfo.c b/lib/libc/gen/getmntinfo.c index 746b4835439..323c4cb2db3 100644 --- a/lib/libc/gen/getmntinfo.c +++ b/lib/libc/gen/getmntinfo.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getmntinfo.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: getmntinfo.c,v 1.6 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/mount.h> #include <stdlib.h> diff --git a/lib/libc/gen/getnetgrent.c b/lib/libc/gen/getnetgrent.c index dc074fae3f9..cc59ae228b6 100644 --- a/lib/libc/gen/getnetgrent.c +++ b/lib/libc/gen/getnetgrent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getnetgrent.c,v 1.16 2005/08/06 17:03:56 deraadt Exp $ */ +/* $OpenBSD: getnetgrent.c,v 1.17 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1994 Christos Zoulas @@ -31,10 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: getnetgrent.c,v 1.16 2005/08/06 17:03:56 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <stdio.h> #define _NETGROUP_PRIVATE diff --git a/lib/libc/gen/getpagesize.c b/lib/libc/gen/getpagesize.c index c8cecbc1a8f..2d01336e07b 100644 --- a/lib/libc/gen/getpagesize.c +++ b/lib/libc/gen/getpagesize.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getpagesize.c,v 1.6 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: getpagesize.c,v 1.5 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/sysctl.h> #include <unistd.h> diff --git a/lib/libc/gen/getpwent.c b/lib/libc/gen/getpwent.c index 103b08fcdda..5a2e9b1d8ed 100644 --- a/lib/libc/gen/getpwent.c +++ b/lib/libc/gen/getpwent.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getpwent.c,v 1.34 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. @@ -28,10 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getpwent.c,v 1.33 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <fcntl.h> #include <db.h> diff --git a/lib/libc/gen/getttyent.c b/lib/libc/gen/getttyent.c index 13f61fc06da..38b57feee91 100644 --- a/lib/libc/gen/getttyent.c +++ b/lib/libc/gen/getttyent.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getttyent.c,v 1.9 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: getttyent.c,v 1.8 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <ttyent.h> #include <stdio.h> #include <ctype.h> diff --git a/lib/libc/gen/getusershell.c b/lib/libc/gen/getusershell.c index 108a4cc13dc..200c78c66bc 100644 --- a/lib/libc/gen/getusershell.c +++ b/lib/libc/gen/getusershell.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getusershell.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1985, 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: getusershell.c,v 1.7 2005/04/02 17:04:52 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/file.h> #include <sys/stat.h> diff --git a/lib/libc/gen/glob.c b/lib/libc/gen/glob.c index e38336496c2..e554b7cba98 100644 --- a/lib/libc/gen/glob.c +++ b/lib/libc/gen/glob.c @@ -1,3 +1,4 @@ +/* $OpenBSD: glob.c,v 1.25 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. @@ -30,14 +31,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; -#else -static char rcsid[] = "$OpenBSD: glob.c,v 1.24 2004/10/07 16:34:04 millert Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - /* * glob(3) -- a superset of the one defined in POSIX 1003.2. * diff --git a/lib/libc/gen/initgroups.c b/lib/libc/gen/initgroups.c index 07bad81eb64..c7a717a1410 100644 --- a/lib/libc/gen/initgroups.c +++ b/lib/libc/gen/initgroups.c @@ -1,3 +1,4 @@ +/* $OpenBSD: initgroups.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1983, 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: initgroups.c,v 1.7 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <err.h> diff --git a/lib/libc/gen/isatty.c b/lib/libc/gen/isatty.c index 305fe83b48d..a4c34d8b5c3 100644 --- a/lib/libc/gen/isatty.c +++ b/lib/libc/gen/isatty.c @@ -1,3 +1,4 @@ +/* $OpenBSD: isatty.c,v 1.6 2005/08/08 08:05:34 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: isatty.c,v 1.5 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <termios.h> #include <unistd.h> #include "thread_private.h" diff --git a/lib/libc/gen/isctype.c b/lib/libc/gen/isctype.c index 74a284ad0a6..970b5e274cd 100644 --- a/lib/libc/gen/isctype.c +++ b/lib/libc/gen/isctype.c @@ -1,3 +1,4 @@ +/* $OpenBSD: isctype.c,v 1.11 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. * All rights reserved. @@ -32,10 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: isctype.c,v 1.10 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #define _ANSI_LIBRARY #include <ctype.h> #include <stdio.h> diff --git a/lib/libc/gen/isfdtype.c b/lib/libc/gen/isfdtype.c index 3682bf19ab6..04cee8d7e67 100644 --- a/lib/libc/gen/isfdtype.c +++ b/lib/libc/gen/isfdtype.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isfdtype.c,v 1.3 2003/06/17 21:56:23 millert Exp $ */ +/* $OpenBSD: isfdtype.c,v 1.4 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> @@ -20,10 +20,6 @@ * Materiel Command, USAF, under agreement number F39502-99-1-0512. */ -#ifndef lint -static const char rcsid[] = "$OpenBSD: isfdtype.c,v 1.3 2003/06/17 21:56:23 millert Exp $"; -#endif /* not lint */ - #include <sys/types.h> #include <sys/stat.h> diff --git a/lib/libc/gen/lockf.c b/lib/libc/gen/lockf.c index 2da2d867e68..cf0250b0207 100644 --- a/lib/libc/gen/lockf.c +++ b/lib/libc/gen/lockf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lockf.c,v 1.3 2003/06/11 21:03:10 deraadt Exp $ */ +/* $OpenBSD: lockf.c,v 1.4 2005/08/08 08:05:34 espie Exp $ */ /* $NetBSD: lockf.c,v 1.1 1997/12/20 20:23:18 kleink Exp $ */ /*- @@ -37,10 +37,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: lockf.c,v 1.3 2003/06/11 21:03:10 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <fcntl.h> #include <unistd.h> diff --git a/lib/libc/gen/nftw.c b/lib/libc/gen/nftw.c index 9012c7dbdf9..dd201b495e2 100644 --- a/lib/libc/gen/nftw.c +++ b/lib/libc/gen/nftw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nftw.c,v 1.4 2004/07/07 16:05:23 millert Exp $ */ +/* $OpenBSD: nftw.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com> @@ -20,10 +20,6 @@ * Materiel Command, USAF, under agreement number F39502-99-1-0512. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: nftw.c,v 1.4 2004/07/07 16:05:23 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> #include <errno.h> diff --git a/lib/libc/gen/nice.c b/lib/libc/gen/nice.c index d1352a8216a..8cbca8cc2f0 100644 --- a/lib/libc/gen/nice.c +++ b/lib/libc/gen/nice.c @@ -27,10 +27,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: nice.c,v 1.6 2003/06/02 20:18:34 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/time.h> #include <sys/resource.h> diff --git a/lib/libc/gen/nlist.c b/lib/libc/gen/nlist.c index 3b9d8b74cf1..36493ce6c0d 100644 --- a/lib/libc/gen/nlist.c +++ b/lib/libc/gen/nlist.c @@ -1,3 +1,4 @@ +/* $OpenBSD: nlist.c,v 1.51 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: nlist.c,v 1.50 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/param.h> #include <sys/mman.h> diff --git a/lib/libc/gen/opendir.c b/lib/libc/gen/opendir.c index fb8f4fc600c..00d2cb75746 100644 --- a/lib/libc/gen/opendir.c +++ b/lib/libc/gen/opendir.c @@ -1,3 +1,4 @@ +/* $OpenBSD: opendir.c,v 1.14 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1983, 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: opendir.c,v 1.13 2005/06/16 03:01:25 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/mount.h> #include <sys/stat.h> diff --git a/lib/libc/gen/pause.c b/lib/libc/gen/pause.c index 4db649bb4b0..b72d966d46a 100644 --- a/lib/libc/gen/pause.c +++ b/lib/libc/gen/pause.c @@ -1,14 +1,10 @@ -/* $OpenBSD: pause.c,v 1.5 2004/05/18 02:05:52 jfb Exp $ */ +/* $OpenBSD: pause.c,v 1.6 2005/08/08 08:05:34 espie Exp $ */ /* * Written by Todd C. Miller <Todd.Miller@courtesan.com> * Public domain. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: pause.c,v 1.5 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <signal.h> #include <unistd.h> diff --git a/lib/libc/gen/popen.c b/lib/libc/gen/popen.c index 7b8f6fdc788..5f796e5cee5 100644 --- a/lib/libc/gen/popen.c +++ b/lib/libc/gen/popen.c @@ -1,3 +1,4 @@ +/* $OpenBSD: popen.c,v 1.17 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1988, 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: popen.c,v 1.16 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/wait.h> diff --git a/lib/libc/gen/psignal.c b/lib/libc/gen/psignal.c index 3e2e6ce43a2..e1faa71586b 100644 --- a/lib/libc/gen/psignal.c +++ b/lib/libc/gen/psignal.c @@ -1,3 +1,4 @@ +/* $OpenBSD: psignal.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1983, 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: psignal.c,v 1.7 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * Print the name of the signal indicated * along with the supplied message. diff --git a/lib/libc/gen/pw_dup.c b/lib/libc/gen/pw_dup.c index e212ff9c258..da7b6b034dd 100644 --- a/lib/libc/gen/pw_dup.c +++ b/lib/libc/gen/pw_dup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pw_dup.c,v 1.6 2005/02/27 22:13:10 pat Exp $ */ +/* $OpenBSD: pw_dup.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 2000, 2002 Todd C. Miller <Todd.Miller@courtesan.com> @@ -20,10 +20,6 @@ * Materiel Command, USAF, under agreement number F39502-99-1-0512. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: pw_dup.c,v 1.6 2005/02/27 22:13:10 pat Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <pwd.h> diff --git a/lib/libc/gen/pwcache.c b/lib/libc/gen/pwcache.c index 1d1d3eb2fc6..6f8e6447e99 100644 --- a/lib/libc/gen/pwcache.c +++ b/lib/libc/gen/pwcache.c @@ -1,3 +1,4 @@ +/* $OpenBSD: pwcache.c,v 1.9 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: pwcache.c,v 1.8 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <grp.h> diff --git a/lib/libc/gen/raise.c b/lib/libc/gen/raise.c index d62c212ec25..3ca6d3dfac6 100644 --- a/lib/libc/gen/raise.c +++ b/lib/libc/gen/raise.c @@ -1,3 +1,4 @@ +/* $OpenBSD: raise.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1990, 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: raise.c,v 1.4 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <signal.h> #include <unistd.h> diff --git a/lib/libc/gen/readdir.c b/lib/libc/gen/readdir.c index 73859cc3633..180ca35fe21 100644 --- a/lib/libc/gen/readdir.c +++ b/lib/libc/gen/readdir.c @@ -1,3 +1,4 @@ +/* $OpenBSD: readdir.c,v 1.10 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1983, 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: readdir.c,v 1.9 2005/06/16 03:01:25 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <dirent.h> #include <string.h> diff --git a/lib/libc/gen/readpassphrase.c b/lib/libc/gen/readpassphrase.c index ece1423d509..8e6dde432c4 100644 --- a/lib/libc/gen/readpassphrase.c +++ b/lib/libc/gen/readpassphrase.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readpassphrase.c,v 1.17 2005/05/24 16:09:33 millert Exp $ */ +/* $OpenBSD: readpassphrase.c,v 1.18 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 2000-2002 Todd C. Miller <Todd.Miller@courtesan.com> @@ -20,10 +20,6 @@ * Materiel Command, USAF, under agreement number F39502-99-1-0512. */ -#if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: readpassphrase.c,v 1.17 2005/05/24 16:09:33 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <ctype.h> #include <errno.h> #include <fcntl.h> diff --git a/lib/libc/gen/rewinddir.c b/lib/libc/gen/rewinddir.c index fd53a4fa8d4..8d37fa8e6e1 100644 --- a/lib/libc/gen/rewinddir.c +++ b/lib/libc/gen/rewinddir.c @@ -1,3 +1,4 @@ +/* $OpenBSD: rewinddir.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1990, 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: rewinddir.c,v 1.6 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <dirent.h> diff --git a/lib/libc/gen/scandir.c b/lib/libc/gen/scandir.c index adbf04ce053..f3b3fe2b569 100644 --- a/lib/libc/gen/scandir.c +++ b/lib/libc/gen/scandir.c @@ -1,3 +1,4 @@ +/* $OpenBSD: scandir.c,v 1.10 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1983, 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: scandir.c,v 1.9 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * Scan the directory dirname calling select to make a list of selected * directory entries then sort using qsort and compare routine dcomp. diff --git a/lib/libc/gen/seekdir.c b/lib/libc/gen/seekdir.c index 401bf72b8af..b339a2709ad 100644 --- a/lib/libc/gen/seekdir.c +++ b/lib/libc/gen/seekdir.c @@ -1,3 +1,4 @@ +/* $OpenBSD: seekdir.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1983, 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: seekdir.c,v 1.6 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <dirent.h> diff --git a/lib/libc/gen/setdomainname.c b/lib/libc/gen/setdomainname.c index 330cf63ce2c..0261397fe11 100644 --- a/lib/libc/gen/setdomainname.c +++ b/lib/libc/gen/setdomainname.c @@ -1,3 +1,4 @@ +/* $OpenBSD: setdomainname.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: setdomainname.c,v 1.7 2003/07/15 17:32:41 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/sysctl.h> #include <unistd.h> diff --git a/lib/libc/gen/sethostname.c b/lib/libc/gen/sethostname.c index 46b2309ed50..90ee4a2ef77 100644 --- a/lib/libc/gen/sethostname.c +++ b/lib/libc/gen/sethostname.c @@ -1,3 +1,4 @@ +/* $OpenBSD: sethostname.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: sethostname.c,v 1.7 2003/07/15 17:32:41 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/sysctl.h> #include <unistd.h> diff --git a/lib/libc/gen/setjmperr.c b/lib/libc/gen/setjmperr.c index cca5a3529e7..9a06cdc5f65 100644 --- a/lib/libc/gen/setjmperr.c +++ b/lib/libc/gen/setjmperr.c @@ -1,3 +1,4 @@ +/* $OpenBSD: setjmperr.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1980, 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: setjmperr.c,v 1.4 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * This routine is called from longjmp() when an error occurs. * Programs that wish to exit gracefully from this error may diff --git a/lib/libc/gen/setmode.c b/lib/libc/gen/setmode.c index e530f09040d..22353badbde 100644 --- a/lib/libc/gen/setmode.c +++ b/lib/libc/gen/setmode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: setmode.c,v 1.16 2005/03/01 13:51:47 miod Exp $ */ +/* $OpenBSD: setmode.c,v 1.17 2005/08/08 08:05:34 espie Exp $ */ /* $NetBSD: setmode.c,v 1.15 1997/02/07 22:21:06 christos Exp $ */ /* @@ -33,14 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)setmode.c 8.2 (Berkeley) 3/25/94"; -#else -static char rcsid[] = "$OpenBSD: setmode.c,v 1.16 2005/03/01 13:51:47 miod Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> diff --git a/lib/libc/gen/setproctitle.c b/lib/libc/gen/setproctitle.c index 21eddd13084..569c9c146c8 100644 --- a/lib/libc/gen/setproctitle.c +++ b/lib/libc/gen/setproctitle.c @@ -1,3 +1,4 @@ +/* $OpenBSD: setproctitle.c,v 1.11 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1994, 1995 Christopher G. Demetriou * All rights reserved. @@ -29,10 +30,6 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: setproctitle.c,v 1.10 2005/03/08 15:38:46 moritz Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/types.h> #include <sys/exec.h> diff --git a/lib/libc/gen/siginterrupt.c b/lib/libc/gen/siginterrupt.c index 8af4350aa56..ac74a7ab6bf 100644 --- a/lib/libc/gen/siginterrupt.c +++ b/lib/libc/gen/siginterrupt.c @@ -1,3 +1,4 @@ +/* $OpenBSD: siginterrupt.c,v 1.6 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: siginterrupt.c,v 1.5 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <signal.h> /* diff --git a/lib/libc/gen/siglist.c b/lib/libc/gen/siglist.c index 1fa993518b9..65c32c08b0d 100644 --- a/lib/libc/gen/siglist.c +++ b/lib/libc/gen/siglist.c @@ -1,3 +1,4 @@ +/* $OpenBSD: siglist.c,v 1.4 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1983, 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: siglist.c,v 1.3 2003/06/02 20:18:35 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <signal.h> diff --git a/lib/libc/gen/signal.c b/lib/libc/gen/signal.c index d557adceea3..efce8093d0e 100644 --- a/lib/libc/gen/signal.c +++ b/lib/libc/gen/signal.c @@ -1,3 +1,4 @@ +/* $OpenBSD: signal.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1985, 1989, 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: signal.c,v 1.6 2004/05/03 17:25:00 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * Almost backwards compatible signal. */ diff --git a/lib/libc/gen/signame.c b/lib/libc/gen/signame.c index 5535b9a1965..51f80e3d4ed 100644 --- a/lib/libc/gen/signame.c +++ b/lib/libc/gen/signame.c @@ -1,3 +1,4 @@ +/* $OpenBSD: signame.c,v 1.4 2005/08/08 08:05:34 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: signame.c,v 1.3 2003/06/02 20:18:35 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <signal.h> #include <unistd.h> diff --git a/lib/libc/gen/sigsetops.c b/lib/libc/gen/sigsetops.c index e88c57d01fb..d9b35b5c62b 100644 --- a/lib/libc/gen/sigsetops.c +++ b/lib/libc/gen/sigsetops.c @@ -1,3 +1,4 @@ +/* $OpenBSD: sigsetops.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. @@ -29,10 +30,6 @@ * @(#)sigsetops.c 8.1 (Berkeley) 6/4/93 */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: sigsetops.c,v 1.4 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <errno.h> #include <signal.h> diff --git a/lib/libc/gen/sleep.c b/lib/libc/gen/sleep.c index 88717fdc189..28e9657a9ee 100644 --- a/lib/libc/gen/sleep.c +++ b/lib/libc/gen/sleep.c @@ -1,3 +1,4 @@ +/* $OpenBSD: sleep.c,v 1.11 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: sleep.c,v 1.10 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/time.h> #include <unistd.h> diff --git a/lib/libc/gen/strtofflags.c b/lib/libc/gen/strtofflags.c index af76b7efd89..9eba0f4517d 100644 --- a/lib/libc/gen/strtofflags.c +++ b/lib/libc/gen/strtofflags.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strtofflags.c,v 1.4 2004/05/18 02:05:52 jfb Exp $ */ +/* $OpenBSD: strtofflags.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1993 @@ -29,17 +29,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)stat_flags.c 8.1 (Berkeley) 5/31/93"; -static const char rcsid[] = - "$FreeBSD: src/lib/libc/gen/strtofflags.c,v 1.18 2000/06/17 11:09:24 joe Exp $"; -#else -static const char rcsid[] = - "$OpenBSD: strtofflags.c,v 1.4 2004/05/18 02:05:52 jfb Exp $"; -#endif -#endif /* not lint */ - #include <sys/types.h> #include <sys/stat.h> diff --git a/lib/libc/gen/sysconf.c b/lib/libc/gen/sysconf.c index f8b3f63697a..16dbc8c6673 100644 --- a/lib/libc/gen/sysconf.c +++ b/lib/libc/gen/sysconf.c @@ -1,3 +1,4 @@ +/* $OpenBSD: sysconf.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 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: sysconf.c,v 1.7 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/sem.h> #include <sys/sysctl.h> diff --git a/lib/libc/gen/sysctl.c b/lib/libc/gen/sysctl.c index dbba85999fa..386317cc6ec 100644 --- a/lib/libc/gen/sysctl.c +++ b/lib/libc/gen/sysctl.c @@ -1,3 +1,4 @@ +/* $OpenBSD: sysctl.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 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: sysctl.c,v 1.6 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/sysctl.h> diff --git a/lib/libc/gen/syslog.c b/lib/libc/gen/syslog.c index fdd10b76b9d..6bba3930e91 100644 --- a/lib/libc/gen/syslog.c +++ b/lib/libc/gen/syslog.c @@ -1,3 +1,4 @@ +/* $OpenBSD: syslog.c,v 1.28 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1983, 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: syslog.c,v 1.27 2005/03/08 15:41:03 moritz Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/socket.h> #include <sys/syslog.h> diff --git a/lib/libc/gen/telldir.c b/lib/libc/gen/telldir.c index 3033dede5ff..e215c847c25 100644 --- a/lib/libc/gen/telldir.c +++ b/lib/libc/gen/telldir.c @@ -1,3 +1,4 @@ +/* $OpenBSD: telldir.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1983, 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: telldir.c,v 1.6 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <dirent.h> #include <stdlib.h> diff --git a/lib/libc/gen/time.c b/lib/libc/gen/time.c index 6daa35d9ed7..3a57500d433 100644 --- a/lib/libc/gen/time.c +++ b/lib/libc/gen/time.c @@ -1,3 +1,4 @@ +/* $OpenBSD: time.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1983, 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: time.c,v 1.4 2003/07/08 00:11:50 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/time.h> diff --git a/lib/libc/gen/times.c b/lib/libc/gen/times.c index 0117263d496..86cf53eca0b 100644 --- a/lib/libc/gen/times.c +++ b/lib/libc/gen/times.c @@ -1,3 +1,4 @@ +/* $OpenBSD: times.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1990, 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: times.c,v 1.4 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/time.h> #include <sys/times.h> diff --git a/lib/libc/gen/timezone.c b/lib/libc/gen/timezone.c index 9bae62c871f..96890723600 100644 --- a/lib/libc/gen/timezone.c +++ b/lib/libc/gen/timezone.c @@ -1,3 +1,4 @@ +/* $OpenBSD: timezone.c,v 1.10 2005/08/08 08:05:34 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: timezone.c,v 1.9 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/time.h> #include <stdio.h> diff --git a/lib/libc/gen/tolower_.c b/lib/libc/gen/tolower_.c index cd98f88af73..50dcc7b4c86 100644 --- a/lib/libc/gen/tolower_.c +++ b/lib/libc/gen/tolower_.c @@ -1,12 +1,9 @@ +/* $OpenBSD: tolower_.c,v 1.9 2005/08/08 08:05:34 espie Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: tolower_.c,v 1.8 2005/08/08 05:53:00 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #define _ANSI_LIBRARY #include <ctype.h> #include <stdio.h> diff --git a/lib/libc/gen/toupper_.c b/lib/libc/gen/toupper_.c index fdb87bc3a29..ac228a7453f 100644 --- a/lib/libc/gen/toupper_.c +++ b/lib/libc/gen/toupper_.c @@ -1,12 +1,9 @@ +/* $OpenBSD: toupper_.c,v 1.9 2005/08/08 08:05:34 espie Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: toupper_.c,v 1.8 2005/08/08 05:53:00 espie Exp $"; -#endif /* LIBC_SCCS and not lint */ - #define _ANSI_LIBRARY #include <ctype.h> #include <stdio.h> diff --git a/lib/libc/gen/ttyname.c b/lib/libc/gen/ttyname.c index 16382e8c6f9..7a70cca95fa 100644 --- a/lib/libc/gen/ttyname.c +++ b/lib/libc/gen/ttyname.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ttyname.c,v 1.12 2005/08/08 08:05:34 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: ttyname.c,v 1.11 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> diff --git a/lib/libc/gen/ttyslot.c b/lib/libc/gen/ttyslot.c index cc524d64b00..da56e911fb1 100644 --- a/lib/libc/gen/ttyslot.c +++ b/lib/libc/gen/ttyslot.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ttyslot.c,v 1.7 2005/08/08 08:05:34 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: ttyslot.c,v 1.6 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <ttyent.h> #include <stdio.h> #include <string.h> diff --git a/lib/libc/gen/ualarm.c b/lib/libc/gen/ualarm.c index 3afbbe7c740..8c19589dd32 100644 --- a/lib/libc/gen/ualarm.c +++ b/lib/libc/gen/ualarm.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ualarm.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1985, 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: ualarm.c,v 1.6 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/time.h> #include <unistd.h> diff --git a/lib/libc/gen/uname.c b/lib/libc/gen/uname.c index caabf758fe7..f55a468602d 100644 --- a/lib/libc/gen/uname.c +++ b/lib/libc/gen/uname.c @@ -1,3 +1,4 @@ +/* $OpenBSD: uname.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1994 * 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: uname.c,v 1.7 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/sysctl.h> #include <sys/utsname.h> diff --git a/lib/libc/gen/unvis.c b/lib/libc/gen/unvis.c index 3d68b431a1d..258c2d51996 100644 --- a/lib/libc/gen/unvis.c +++ b/lib/libc/gen/unvis.c @@ -1,3 +1,4 @@ +/* $OpenBSD: unvis.c,v 1.12 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1989, 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: unvis.c,v 1.11 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <ctype.h> #include <vis.h> diff --git a/lib/libc/gen/usleep.c b/lib/libc/gen/usleep.c index 47890b0c738..5e2c51464ea 100644 --- a/lib/libc/gen/usleep.c +++ b/lib/libc/gen/usleep.c @@ -1,3 +1,4 @@ +/* $OpenBSD: usleep.c,v 1.10 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1989, 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: usleep.c,v 1.9 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/time.h> #include <unistd.h> diff --git a/lib/libc/gen/utime.c b/lib/libc/gen/utime.c index 7ad66e0112f..263c217a01b 100644 --- a/lib/libc/gen/utime.c +++ b/lib/libc/gen/utime.c @@ -1,3 +1,4 @@ +/* $OpenBSD: utime.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1990, 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: utime.c,v 1.4 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/time.h> #include <utime.h> diff --git a/lib/libc/gen/valloc.c b/lib/libc/gen/valloc.c index 0252c8f4829..42d8eec4bd0 100644 --- a/lib/libc/gen/valloc.c +++ b/lib/libc/gen/valloc.c @@ -1,3 +1,4 @@ +/* $OpenBSD: valloc.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1980, 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: valloc.c,v 1.4 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <stdlib.h> #include <unistd.h> diff --git a/lib/libc/gen/verr.c b/lib/libc/gen/verr.c index 8d63a16a13a..fdf07ed0b58 100644 --- a/lib/libc/gen/verr.c +++ b/lib/libc/gen/verr.c @@ -1,3 +1,4 @@ +/* $OpenBSD: verr.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 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: verr.c,v 1.7 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <err.h> #include <errno.h> diff --git a/lib/libc/gen/verrx.c b/lib/libc/gen/verrx.c index 6652a497560..9e3cf54e4a7 100644 --- a/lib/libc/gen/verrx.c +++ b/lib/libc/gen/verrx.c @@ -1,3 +1,4 @@ +/* $OpenBSD: verrx.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 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: verrx.c,v 1.7 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <err.h> #include <stdio.h> diff --git a/lib/libc/gen/vis.c b/lib/libc/gen/vis.c index 2a5c90143db..bbe839e9a7a 100644 --- a/lib/libc/gen/vis.c +++ b/lib/libc/gen/vis.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vis.c,v 1.15 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 1989, 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: vis.c,v 1.14 2005/03/25 15:38:47 otto Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <limits.h> #include <ctype.h> diff --git a/lib/libc/gen/vwarn.c b/lib/libc/gen/vwarn.c index e59b53da74a..41ab3698727 100644 --- a/lib/libc/gen/vwarn.c +++ b/lib/libc/gen/vwarn.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vwarn.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 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: vwarn.c,v 1.7 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <err.h> #include <errno.h> diff --git a/lib/libc/gen/vwarnx.c b/lib/libc/gen/vwarnx.c index 75fbeeaf2cf..41fda8e901a 100644 --- a/lib/libc/gen/vwarnx.c +++ b/lib/libc/gen/vwarnx.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vwarnx.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 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: vwarnx.c,v 1.7 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <err.h> #include <stdio.h> diff --git a/lib/libc/gen/wait.c b/lib/libc/gen/wait.c index ef7bf7ec2a8..30c1b591a9a 100644 --- a/lib/libc/gen/wait.c +++ b/lib/libc/gen/wait.c @@ -1,3 +1,4 @@ +/* $OpenBSD: wait.c,v 1.5 2005/08/08 08:05:34 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: wait.c,v 1.4 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/time.h> #include <sys/wait.h> diff --git a/lib/libc/gen/wait3.c b/lib/libc/gen/wait3.c index 2fae3cd1bfc..5eb263b7f10 100644 --- a/lib/libc/gen/wait3.c +++ b/lib/libc/gen/wait3.c @@ -1,3 +1,4 @@ +/* $OpenBSD: wait3.c,v 1.5 2005/08/08 08:05:34 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: wait3.c,v 1.4 2004/05/18 02:05:52 jfb Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/time.h> #include <sys/wait.h> diff --git a/lib/libc/gen/waitpid.c b/lib/libc/gen/waitpid.c index 4ac4040ecf2..078a6db38d9 100644 --- a/lib/libc/gen/waitpid.c +++ b/lib/libc/gen/waitpid.c @@ -1,3 +1,4 @@ +/* $OpenBSD: waitpid.c,v 1.6 2005/08/08 08:05:34 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: waitpid.c,v 1.5 2003/06/02 20:18:35 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <sys/time.h> #include <sys/wait.h> diff --git a/lib/libc/gen/warn.c b/lib/libc/gen/warn.c index 1cceb504461..bbff436f59b 100644 --- a/lib/libc/gen/warn.c +++ b/lib/libc/gen/warn.c @@ -1,3 +1,4 @@ +/* $OpenBSD: warn.c,v 1.8 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 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: warn.c,v 1.7 2003/06/02 20:18:35 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <err.h> #include <stdarg.h> diff --git a/lib/libc/gen/warnx.c b/lib/libc/gen/warnx.c index 7c357f67bb5..42a15778c68 100644 --- a/lib/libc/gen/warnx.c +++ b/lib/libc/gen/warnx.c @@ -1,3 +1,4 @@ +/* $OpenBSD: warnx.c,v 1.7 2005/08/08 08:05:34 espie Exp $ */ /*- * Copyright (c) 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: warnx.c,v 1.6 2003/06/02 20:18:35 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <err.h> #include <stdarg.h> |