Add __RCSIDs.
OK'd by mycroft.
This commit is contained in:
parent
808ab1197e
commit
2728318e3c
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: debug.c,v 1.5 2003/09/22 14:37:57 enami Exp $ */
|
/* $NetBSD: debug.c,v 1.6 2004/10/22 05:39:56 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 John D. Polstra.
|
* Copyright 1996 John D. Polstra.
|
||||||
@ -36,6 +36,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: debug.c,v 1.6 2004/10/22 05:39:56 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: headers.c,v 1.18 2003/07/24 10:12:25 skrll Exp $ */
|
/* $NetBSD: headers.c,v 1.19 2004/10/22 05:39:56 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 John D. Polstra.
|
* Copyright 1996 John D. Polstra.
|
||||||
@ -38,6 +38,11 @@
|
|||||||
* John Polstra <jdp@polstra.com>.
|
* John Polstra <jdp@polstra.com>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: headers.c,v 1.19 2004/10/22 05:39:56 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: load.c,v 1.28 2004/07/05 11:50:07 cube Exp $ */
|
/* $NetBSD: load.c,v 1.29 2004/10/22 05:39:56 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 John D. Polstra.
|
* Copyright 1996 John D. Polstra.
|
||||||
@ -38,6 +38,11 @@
|
|||||||
* John Polstra <jdp@polstra.com>.
|
* John Polstra <jdp@polstra.com>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: load.c,v 1.29 2004/10/22 05:39:56 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: malloc.c,v 1.8 2003/08/07 09:46:43 agc Exp $ */
|
/* $NetBSD: malloc.c,v 1.9 2004/10/22 05:39:56 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1983 Regents of the University of California.
|
* Copyright (c) 1983 Regents of the University of California.
|
||||||
@ -45,6 +45,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: malloc.c,v 1.9 2004/10/22 05:39:56 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: map_object.c,v 1.30 2003/07/24 10:12:25 skrll Exp $ */
|
/* $NetBSD: map_object.c,v 1.31 2004/10/22 05:39:56 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 John D. Polstra.
|
* Copyright 1996 John D. Polstra.
|
||||||
@ -32,6 +32,11 @@
|
|||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: map_object.c,v 1.31 2004/10/22 05:39:56 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: paths.c,v 1.31 2004/07/05 11:50:07 cube Exp $ */
|
/* $NetBSD: paths.c,v 1.32 2004/10/22 05:39:56 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 Matt Thomas <matt@3am-software.com>
|
* Copyright 1996 Matt Thomas <matt@3am-software.com>
|
||||||
@ -28,6 +28,10 @@
|
|||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: paths.c,v 1.32 2004/10/22 05:39:56 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: reloc.c,v 1.84 2004/07/17 05:03:33 petrov Exp $ */
|
/* $NetBSD: reloc.c,v 1.85 2004/10/22 05:39:56 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 John D. Polstra.
|
* Copyright 1996 John D. Polstra.
|
||||||
@ -37,6 +37,11 @@
|
|||||||
* John Polstra <jdp@polstra.com>.
|
* John Polstra <jdp@polstra.com>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: reloc.c,v 1.85 2004/10/22 05:39:56 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: rtld.c,v 1.106 2004/07/18 17:26:19 thorpej Exp $ */
|
/* $NetBSD: rtld.c,v 1.107 2004/10/22 05:39:57 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 John D. Polstra.
|
* Copyright 1996 John D. Polstra.
|
||||||
@ -38,6 +38,11 @@
|
|||||||
* John Polstra <jdp@polstra.com>.
|
* John Polstra <jdp@polstra.com>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: rtld.c,v 1.107 2004/10/22 05:39:57 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: search.c,v 1.18 2003/08/12 09:18:50 skrll Exp $ */
|
/* $NetBSD: search.c,v 1.19 2004/10/22 05:39:57 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 Matt Thomas <matt@3am-software.com>
|
* Copyright 1996 Matt Thomas <matt@3am-software.com>
|
||||||
@ -36,6 +36,11 @@
|
|||||||
* John Polstra <jdp@polstra.com>.
|
* John Polstra <jdp@polstra.com>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: search.c,v 1.19 2004/10/22 05:39:57 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: symbol.c,v 1.36 2004/07/18 17:26:19 thorpej Exp $ */
|
/* $NetBSD: symbol.c,v 1.37 2004/10/22 05:39:57 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 John D. Polstra.
|
* Copyright 1996 John D. Polstra.
|
||||||
@ -38,6 +38,11 @@
|
|||||||
* John Polstra <jdp@polstra.com>.
|
* John Polstra <jdp@polstra.com>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: symbol.c,v 1.37 2004/10/22 05:39:57 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: xmalloc.c,v 1.4 2003/07/24 10:12:26 skrll Exp $ */
|
/* $NetBSD: xmalloc.c,v 1.5 2004/10/22 05:39:57 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 John D. Polstra.
|
* Copyright 1996 John D. Polstra.
|
||||||
@ -32,6 +32,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: xmalloc.c,v 1.5 2004/10/22 05:39:57 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include "rtldenv.h"
|
#include "rtldenv.h"
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: xprintf.c,v 1.16 2004/02/15 02:59:04 enami Exp $ */
|
/* $NetBSD: xprintf.c,v 1.17 2004/10/22 05:39:57 skrll Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 1996 Matt Thomas <matt@3am-software.com>
|
* Copyright 1996 Matt Thomas <matt@3am-software.com>
|
||||||
@ -28,6 +28,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
|
#ifndef lint
|
||||||
|
__RCSID("$NetBSD: xprintf.c,v 1.17 2004/10/22 05:39:57 skrll Exp $");
|
||||||
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user