summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-08-02 17:48:44 +0000
committermycroft <mycroft@NetBSD.org>1993-08-02 17:48:44 +0000
commitaee4b07b8a049bdc57cefcbb82bebeb6f341859a (patch)
treed2baf06176c4135542f5717a0fa9b45752f77e4f /gnu
parentc8194f0876b272d70833a6b91ec566314a02050a (diff)
Add RCS identifiers, remove some completely useless RCS logs and patchkit
headers, and a few other insignificant changes.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/Makefile2
-rw-r--r--gnu/usr.bin/Makefile.inc2
-rw-r--r--gnu/usr.bin/tar/fnmatch.c4
-rw-r--r--gnu/usr.bin/tar/fnmatch.h5
-rw-r--r--gnu/usr.bin/tar/getoldopt.c4
-rw-r--r--gnu/usr.bin/tar/getopt.c4
-rw-r--r--gnu/usr.bin/tar/getopt.h5
-rw-r--r--gnu/usr.bin/tar/getopt1.c4
-rw-r--r--gnu/usr.bin/tar/getpagesize.h2
-rw-r--r--gnu/usr.bin/tar/gnu.c4
-rw-r--r--gnu/usr.bin/tar/list.c4
-rw-r--r--gnu/usr.bin/tar/mangle.c4
-rw-r--r--gnu/usr.bin/tar/names.c4
-rw-r--r--gnu/usr.bin/tar/open3.h5
-rw-r--r--gnu/usr.bin/tar/pathmax.h5
-rw-r--r--gnu/usr.bin/tar/port.c4
-rw-r--r--gnu/usr.bin/tar/port.h5
-rw-r--r--gnu/usr.bin/tar/regex.c4
-rw-r--r--gnu/usr.bin/tar/regex.h5
-rw-r--r--gnu/usr.bin/tar/rmt.h5
-rw-r--r--gnu/usr.bin/tar/rtapelib.c4
-rw-r--r--gnu/usr.bin/tar/tar.c4
-rw-r--r--gnu/usr.bin/tar/tar.h5
-rw-r--r--gnu/usr.bin/tar/update.c4
-rw-r--r--gnu/usr.bin/tar/version.c4
25 files changed, 92 insertions, 10 deletions
diff --git a/gnu/Makefile b/gnu/Makefile
index 9c4bd26b146..5b23f72ac36 100644
--- a/gnu/Makefile
+++ b/gnu/Makefile
@@ -1,4 +1,4 @@
-# $Header: /cvsroot/src/gnu/Attic/Makefile,v 1.2 1993/05/04 07:11:19 glass Exp $
+# $Id: Makefile,v 1.3 1993/08/02 17:49:15 mycroft Exp $
SUBDIR+= lib libexec usr.bin games
diff --git a/gnu/usr.bin/Makefile.inc b/gnu/usr.bin/Makefile.inc
index bb747875df5..e4db03485b2 100644
--- a/gnu/usr.bin/Makefile.inc
+++ b/gnu/usr.bin/Makefile.inc
@@ -1,3 +1,3 @@
-# $Header
+# $Id: Makefile.inc,v 1.2 1993/08/02 17:49:12 mycroft Exp $
BINDIR?= /usr/bin
diff --git a/gnu/usr.bin/tar/fnmatch.c b/gnu/usr.bin/tar/fnmatch.c
index ed8c9eea7e3..d2e1331045b 100644
--- a/gnu/usr.bin/tar/fnmatch.c
+++ b/gnu/usr.bin/tar/fnmatch.c
@@ -15,6 +15,10 @@ License along with this library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: fnmatch.c,v 1.2 1993/08/02 17:48:44 mycroft Exp $";
+#endif /* not lint */
+
#include <errno.h>
#include <fnmatch.h>
diff --git a/gnu/usr.bin/tar/fnmatch.h b/gnu/usr.bin/tar/fnmatch.h
index d4150a9a996..24590c84827 100644
--- a/gnu/usr.bin/tar/fnmatch.h
+++ b/gnu/usr.bin/tar/fnmatch.h
@@ -13,7 +13,10 @@ Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
-Cambridge, MA 02139, USA. */
+Cambridge, MA 02139, USA.
+
+ $Id: fnmatch.h,v 1.2 1993/08/02 17:48:45 mycroft Exp $
+*/
#ifndef _FNMATCH_H
diff --git a/gnu/usr.bin/tar/getoldopt.c b/gnu/usr.bin/tar/getoldopt.c
index 27511b94b34..af22568f622 100644
--- a/gnu/usr.bin/tar/getoldopt.c
+++ b/gnu/usr.bin/tar/getoldopt.c
@@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: getoldopt.c,v 1.3 1993/08/02 17:48:46 mycroft Exp $";
+#endif /* not lint */
+
/*
* Plug-compatible replacement for getopt() for parsing tar-like
* arguments. If the first argument begins with "-", it uses getopt;
diff --git a/gnu/usr.bin/tar/getopt.c b/gnu/usr.bin/tar/getopt.c
index 3db9abf121b..29d3d24c58a 100644
--- a/gnu/usr.bin/tar/getopt.c
+++ b/gnu/usr.bin/tar/getopt.c
@@ -19,6 +19,10 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+#ifndef lint
+static char rcsid[] = "$Id: getopt.c,v 1.3 1993/08/02 17:48:47 mycroft Exp $";
+#endif /* not lint */
/* NOTE!!! AIX requires this to be the first thing in the file.
Do not put ANYTHING before it! */
diff --git a/gnu/usr.bin/tar/getopt.h b/gnu/usr.bin/tar/getopt.h
index 93a5cf77816..710f673c8e6 100644
--- a/gnu/usr.bin/tar/getopt.h
+++ b/gnu/usr.bin/tar/getopt.h
@@ -13,7 +13,10 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
- Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ $Id: getopt.h,v 1.3 1993/08/02 17:48:48 mycroft Exp $
+*/
#ifndef _GETOPT_H
#define _GETOPT_H 1
diff --git a/gnu/usr.bin/tar/getopt1.c b/gnu/usr.bin/tar/getopt1.c
index c3582cfa5ca..170d1b471c8 100644
--- a/gnu/usr.bin/tar/getopt1.c
+++ b/gnu/usr.bin/tar/getopt1.c
@@ -14,6 +14,10 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+#ifndef lint
+static char rcsid[] = "$Id: getopt1.c,v 1.3 1993/08/02 17:48:49 mycroft Exp $";
+#endif /* not lint */
#ifdef HAVE_CONFIG_H
#include "config.h"
diff --git a/gnu/usr.bin/tar/getpagesize.h b/gnu/usr.bin/tar/getpagesize.h
index 2d43f262c79..fc6528ed562 100644
--- a/gnu/usr.bin/tar/getpagesize.h
+++ b/gnu/usr.bin/tar/getpagesize.h
@@ -1,3 +1,5 @@
+/* $Id: getpagesize.h,v 1.2 1993/08/02 17:48:49 mycroft Exp $ */
+
#ifdef BSD
#ifndef BSD4_1
#define HAVE_GETPAGESIZE
diff --git a/gnu/usr.bin/tar/gnu.c b/gnu/usr.bin/tar/gnu.c
index ef51f2b5fed..f1b25f7d8dd 100644
--- a/gnu/usr.bin/tar/gnu.c
+++ b/gnu/usr.bin/tar/gnu.c
@@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: gnu.c,v 1.3 1993/08/02 17:48:50 mycroft Exp $";
+#endif /* not lint */
+
#include <stdio.h>
#include <sys/types.h>
#include <ctype.h>
diff --git a/gnu/usr.bin/tar/list.c b/gnu/usr.bin/tar/list.c
index a0c65a334bf..b8829c7195d 100644
--- a/gnu/usr.bin/tar/list.c
+++ b/gnu/usr.bin/tar/list.c
@@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: list.c,v 1.3 1993/08/02 17:48:52 mycroft Exp $";
+#endif /* not lint */
+
/*
* List a tar archive.
*
diff --git a/gnu/usr.bin/tar/mangle.c b/gnu/usr.bin/tar/mangle.c
index 628168473a1..307fd44279c 100644
--- a/gnu/usr.bin/tar/mangle.c
+++ b/gnu/usr.bin/tar/mangle.c
@@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: mangle.c,v 1.3 1993/08/02 17:48:53 mycroft Exp $";
+#endif /* not lint */
+
#include <stdio.h>
#include <sys/types.h>
#include <time.h>
diff --git a/gnu/usr.bin/tar/names.c b/gnu/usr.bin/tar/names.c
index 0de6a8898a3..a9a61ef1281 100644
--- a/gnu/usr.bin/tar/names.c
+++ b/gnu/usr.bin/tar/names.c
@@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: names.c,v 1.4 1993/08/02 17:48:53 mycroft Exp $";
+#endif /* not lint */
+
/*
* Look up user and/or group names.
*
diff --git a/gnu/usr.bin/tar/open3.h b/gnu/usr.bin/tar/open3.h
index c1c0e59b676..04d05632030 100644
--- a/gnu/usr.bin/tar/open3.h
+++ b/gnu/usr.bin/tar/open3.h
@@ -15,7 +15,10 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ $Id: open3.h,v 1.3 1993/08/02 17:48:54 mycroft Exp $
+*/
/*
* open3.h -- #defines for the various flags for the Sys V style 3-argument
diff --git a/gnu/usr.bin/tar/pathmax.h b/gnu/usr.bin/tar/pathmax.h
index aeba9f7d218..0077217c324 100644
--- a/gnu/usr.bin/tar/pathmax.h
+++ b/gnu/usr.bin/tar/pathmax.h
@@ -13,7 +13,10 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ $Id: pathmax.h,v 1.2 1993/08/02 17:48:55 mycroft Exp $
+*/
#ifndef _PATHMAX_H
#define _PATHMAX_H
diff --git a/gnu/usr.bin/tar/port.c b/gnu/usr.bin/tar/port.c
index 10ec32ed728..9ed7c0e6891 100644
--- a/gnu/usr.bin/tar/port.c
+++ b/gnu/usr.bin/tar/port.c
@@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: port.c,v 1.4 1993/08/02 17:48:56 mycroft Exp $";
+#endif /* not lint */
+
#include <stdio.h>
#include <sys/types.h>
#include <signal.h>
diff --git a/gnu/usr.bin/tar/port.h b/gnu/usr.bin/tar/port.h
index 4e65a9ace88..9e1a5cbcdb1 100644
--- a/gnu/usr.bin/tar/port.h
+++ b/gnu/usr.bin/tar/port.h
@@ -15,7 +15,10 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ $Id: port.h,v 1.3 1993/08/02 17:48:57 mycroft Exp $
+*/
/* AIX requires this to be the first thing in the file. */
#ifdef __GNUC__
diff --git a/gnu/usr.bin/tar/regex.c b/gnu/usr.bin/tar/regex.c
index cb94d597c6f..2a60e4b7be2 100644
--- a/gnu/usr.bin/tar/regex.c
+++ b/gnu/usr.bin/tar/regex.c
@@ -19,6 +19,10 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: regex.c,v 1.3 1993/08/02 17:48:59 mycroft Exp $";
+#endif /* not lint */
+
/* AIX requires this to be the first thing in the file. */
#if defined (_AIX) && !defined (REGEX_MALLOC)
#pragma alloca
diff --git a/gnu/usr.bin/tar/regex.h b/gnu/usr.bin/tar/regex.h
index 0840861da36..9e5fdc50715 100644
--- a/gnu/usr.bin/tar/regex.h
+++ b/gnu/usr.bin/tar/regex.h
@@ -15,7 +15,10 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ $Id: regex.h,v 1.3 1993/08/02 17:49:02 mycroft Exp $
+*/
#ifndef __REGEXP_LIBRARY_H__
#define __REGEXP_LIBRARY_H__
diff --git a/gnu/usr.bin/tar/rmt.h b/gnu/usr.bin/tar/rmt.h
index 2155223954c..b782cf67a44 100644
--- a/gnu/usr.bin/tar/rmt.h
+++ b/gnu/usr.bin/tar/rmt.h
@@ -13,7 +13,10 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ $Id: rmt.h,v 1.3 1993/08/02 17:49:03 mycroft Exp $
+*/
#ifdef HAVE_UNISTD_H
#include <unistd.h>
diff --git a/gnu/usr.bin/tar/rtapelib.c b/gnu/usr.bin/tar/rtapelib.c
index eece76ffcd0..86850ed25c9 100644
--- a/gnu/usr.bin/tar/rtapelib.c
+++ b/gnu/usr.bin/tar/rtapelib.c
@@ -15,6 +15,10 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: rtapelib.c,v 1.2 1993/08/02 17:49:04 mycroft Exp $";
+#endif /* not lint */
+
/* The man page rmt(8) for /etc/rmt documents the remote mag tape
protocol which rdump and rrestore use. Unfortunately, the man
page is *WRONG*. The author of the routines I'm including originally
diff --git a/gnu/usr.bin/tar/tar.c b/gnu/usr.bin/tar/tar.c
index 93825823398..4e5a25bf2cd 100644
--- a/gnu/usr.bin/tar/tar.c
+++ b/gnu/usr.bin/tar/tar.c
@@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: tar.c,v 1.5 1993/08/02 17:49:06 mycroft Exp $";
+#endif /* not lint */
+
/*
* A tar (tape archiver) program.
*
diff --git a/gnu/usr.bin/tar/tar.h b/gnu/usr.bin/tar/tar.h
index c3fec78743b..ff31000aaab 100644
--- a/gnu/usr.bin/tar/tar.h
+++ b/gnu/usr.bin/tar/tar.h
@@ -15,7 +15,10 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ $Id: tar.h,v 1.4 1993/08/02 17:49:07 mycroft Exp $
+*/
/* major() and minor() macros (among other things) defined here for hpux */
#ifdef hpux
diff --git a/gnu/usr.bin/tar/update.c b/gnu/usr.bin/tar/update.c
index a64317c666d..f1b090d90ed 100644
--- a/gnu/usr.bin/tar/update.c
+++ b/gnu/usr.bin/tar/update.c
@@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License
along with GNU Tar; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef lint
+static char rcsid[] = "$Id: update.c,v 1.3 1993/08/02 17:49:08 mycroft Exp $";
+#endif /* not lint */
+
/* JF implement the 'r' 'u' and 'A' options for tar. */
/* The 'A' option is my own invention: It means that the file-names are
tar files, and they should simply be appended to the end of the archive.
diff --git a/gnu/usr.bin/tar/version.c b/gnu/usr.bin/tar/version.c
index 4454f62c8e9..1fab5928cf7 100644
--- a/gnu/usr.bin/tar/version.c
+++ b/gnu/usr.bin/tar/version.c
@@ -1 +1,5 @@
+#ifndef lint
+static char rcsid[] = "$Id: version.c,v 1.3 1993/08/02 17:49:09 mycroft Exp $";
+#endif /* not lint */
+
char version_string[] = "GNU tar version 1.11.2";