summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/gawk
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-08-02 17:28:42 +0000
committermycroft <mycroft@NetBSD.org>1993-08-02 17:28:42 +0000
commit2cce313a8b751f32d3d95b2803bcb5e0cac2ccac (patch)
tree481dd98bbea89b18b50fd8dac27502379e5b7709 /gnu/usr.bin/gawk
parent210cab45419b639d07892767d7535c2c7760889d (diff)
Add RCS identifiers, remove some completely useless RCS logs and patchkit
headers, and a few other insignificant changes.
Diffstat (limited to 'gnu/usr.bin/gawk')
-rw-r--r--gnu/usr.bin/gawk/Makefile2
-rw-r--r--gnu/usr.bin/gawk/array.c4
-rw-r--r--gnu/usr.bin/gawk/awk.11
-rw-r--r--gnu/usr.bin/gawk/awk.h2
-rw-r--r--gnu/usr.bin/gawk/builtin.c3
-rw-r--r--gnu/usr.bin/gawk/config.h2
-rw-r--r--gnu/usr.bin/gawk/dfa.c4
-rw-r--r--gnu/usr.bin/gawk/dfa.h5
-rw-r--r--gnu/usr.bin/gawk/eval.c4
-rw-r--r--gnu/usr.bin/gawk/field.c4
-rw-r--r--gnu/usr.bin/gawk/getopt.c4
-rw-r--r--gnu/usr.bin/gawk/getopt.h5
-rw-r--r--gnu/usr.bin/gawk/getopt1.c4
-rw-r--r--gnu/usr.bin/gawk/io.c4
-rw-r--r--gnu/usr.bin/gawk/iop.c4
-rw-r--r--gnu/usr.bin/gawk/msg.c4
-rw-r--r--gnu/usr.bin/gawk/node.c4
-rw-r--r--gnu/usr.bin/gawk/patchlevel.h2
-rw-r--r--gnu/usr.bin/gawk/protos.h2
-rw-r--r--gnu/usr.bin/gawk/re.c4
-rw-r--r--gnu/usr.bin/gawk/regex.c3
-rw-r--r--gnu/usr.bin/gawk/regex.h4
22 files changed, 72 insertions, 3 deletions
diff --git a/gnu/usr.bin/gawk/Makefile b/gnu/usr.bin/gawk/Makefile
index 00efcf09af6..6734da0c85e 100644
--- a/gnu/usr.bin/gawk/Makefile
+++ b/gnu/usr.bin/gawk/Makefile
@@ -1,3 +1,5 @@
+# $Id: Makefile,v 1.2 1993/08/02 17:29:17 mycroft Exp $
+
PROG= awk
SRCS= main.c eval.c builtin.c msg.c iop.c io.c field.c array.c \
node.c version.c re.c awk.c regex.c dfa.c \
diff --git a/gnu/usr.bin/gawk/array.c b/gnu/usr.bin/gawk/array.c
index 59be340c04d..ad5fd047025 100644
--- a/gnu/usr.bin/gawk/array.c
+++ b/gnu/usr.bin/gawk/array.c
@@ -23,6 +23,10 @@
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef lint
+static char rcsid[] = "$Id: array.c,v 1.2 1993/08/02 17:29:20 mycroft Exp $";
+#endif /* not lint */
+
#include "awk.h"
static NODE *assoc_find P((NODE *symbol, NODE *subs, int hash1));
diff --git a/gnu/usr.bin/gawk/awk.1 b/gnu/usr.bin/gawk/awk.1
index 0338485e8db..bc1044d5228 100644
--- a/gnu/usr.bin/gawk/awk.1
+++ b/gnu/usr.bin/gawk/awk.1
@@ -1,3 +1,4 @@
+.\" $Id: awk.1,v 1.2 1993/08/02 17:29:23 mycroft Exp $ -*- nroff -*-
.ds PX \s-1POSIX\s+1
.ds UX \s-1UNIX\s+1
.ds AN \s-1ANSI\s+1
diff --git a/gnu/usr.bin/gawk/awk.h b/gnu/usr.bin/gawk/awk.h
index ca3997f11d4..2c73cd4ff29 100644
--- a/gnu/usr.bin/gawk/awk.h
+++ b/gnu/usr.bin/gawk/awk.h
@@ -21,6 +21,8 @@
* You should have received a copy of the GNU General Public License
* along with GAWK; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * $Id: awk.h,v 1.2 1993/08/02 17:29:26 mycroft Exp $
*/
/* ------------------------------ Includes ------------------------------ */
diff --git a/gnu/usr.bin/gawk/builtin.c b/gnu/usr.bin/gawk/builtin.c
index 9d5e3b302fd..62e8413efa4 100644
--- a/gnu/usr.bin/gawk/builtin.c
+++ b/gnu/usr.bin/gawk/builtin.c
@@ -23,6 +23,9 @@
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef lint
+static char rcsid[] = "$Id: builtin.c,v 1.2 1993/08/02 17:29:28 mycroft Exp $";
+#endif /* not lint */
#include "awk.h"
diff --git a/gnu/usr.bin/gawk/config.h b/gnu/usr.bin/gawk/config.h
index 8c20953ed53..7a4b3d08a40 100644
--- a/gnu/usr.bin/gawk/config.h
+++ b/gnu/usr.bin/gawk/config.h
@@ -23,6 +23,8 @@
* You should have received a copy of the GNU General Public License
* along with GAWK; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * $Id: config.h,v 1.2 1993/08/02 17:29:30 mycroft Exp $
*/
/*
diff --git a/gnu/usr.bin/gawk/dfa.c b/gnu/usr.bin/gawk/dfa.c
index 5293c755871..0a5b9a27094 100644
--- a/gnu/usr.bin/gawk/dfa.c
+++ b/gnu/usr.bin/gawk/dfa.c
@@ -104,6 +104,10 @@ software.
In other words, you are welcome to use, share and improve this program.
You are forbidden to forbid anyone else to use, share and improve
what you give them. Help stamp out software-hoarding! */
+
+#ifndef lint
+static char rcsid[] = "$Id: dfa.c,v 1.2 1993/08/02 17:29:33 mycroft Exp $";
+#endif /* not lint */
#include "awk.h"
#include <assert.h>
diff --git a/gnu/usr.bin/gawk/dfa.h b/gnu/usr.bin/gawk/dfa.h
index 65fc49565a7..4b633a0ad5b 100644
--- a/gnu/usr.bin/gawk/dfa.h
+++ b/gnu/usr.bin/gawk/dfa.h
@@ -101,7 +101,10 @@ software.
In other words, you are welcome to use, share and improve this program.
You are forbidden to forbid anyone else to use, share and improve
-what you give them. Help stamp out software-hoarding! */
+what you give them. Help stamp out software-hoarding!
+
+ $Id: dfa.h,v 1.2 1993/08/02 17:29:36 mycroft Exp $
+*/
#ifdef __STDC__
diff --git a/gnu/usr.bin/gawk/eval.c b/gnu/usr.bin/gawk/eval.c
index f640f3733ad..3e0457411cd 100644
--- a/gnu/usr.bin/gawk/eval.c
+++ b/gnu/usr.bin/gawk/eval.c
@@ -23,6 +23,10 @@
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef lint
+static char rcsid[] = "$Id: eval.c,v 1.2 1993/08/02 17:29:38 mycroft Exp $";
+#endif /* not lint */
+
#include "awk.h"
extern double pow P((double x, double y));
diff --git a/gnu/usr.bin/gawk/field.c b/gnu/usr.bin/gawk/field.c
index d8f9a545563..7d28eebd324 100644
--- a/gnu/usr.bin/gawk/field.c
+++ b/gnu/usr.bin/gawk/field.c
@@ -23,6 +23,10 @@
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef lint
+static char rcsid[] = "$Id: field.c,v 1.2 1993/08/02 17:29:41 mycroft Exp $";
+#endif /* not lint */
+
#include "awk.h"
static int (*parse_field) P((int, char **, int, NODE *,
diff --git a/gnu/usr.bin/gawk/getopt.c b/gnu/usr.bin/gawk/getopt.c
index bbf345c33ca..a04c2fa2aab 100644
--- a/gnu/usr.bin/gawk/getopt.c
+++ b/gnu/usr.bin/gawk/getopt.c
@@ -18,6 +18,10 @@
You should have received a copy of the GNU Library General Public
License 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: getopt.c,v 1.2 1993/08/02 17:29:44 mycroft Exp $";
+#endif /* not lint */
#ifdef GAWK
#include "config.h"
diff --git a/gnu/usr.bin/gawk/getopt.h b/gnu/usr.bin/gawk/getopt.h
index de027434f7c..23a0dfe6ce6 100644
--- a/gnu/usr.bin/gawk/getopt.h
+++ b/gnu/usr.bin/gawk/getopt.h
@@ -13,7 +13,10 @@
You should have received a copy of the GNU Library 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: getopt.h,v 1.2 1993/08/02 17:29:47 mycroft Exp $
+*/
#ifndef _GETOPT_H
#define _GETOPT_H 1
diff --git a/gnu/usr.bin/gawk/getopt1.c b/gnu/usr.bin/gawk/getopt1.c
index e2127cd58d4..2f8da9e4b2a 100644
--- a/gnu/usr.bin/gawk/getopt1.c
+++ b/gnu/usr.bin/gawk/getopt1.c
@@ -16,6 +16,10 @@ You should have received a copy of the GNU Library General Public
License along with libiberty; 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: getopt1.c,v 1.2 1993/08/02 17:29:49 mycroft Exp $";
+#endif /* not lint */
#ifdef LIBC
/* For when compiled as part of the GNU C library. */
diff --git a/gnu/usr.bin/gawk/io.c b/gnu/usr.bin/gawk/io.c
index 7004aedd519..ffcab63bbb1 100644
--- a/gnu/usr.bin/gawk/io.c
+++ b/gnu/usr.bin/gawk/io.c
@@ -23,6 +23,10 @@
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef lint
+static char rcsid[] = "$Id: io.c,v 1.2 1993/08/02 17:29:52 mycroft Exp $";
+#endif /* not lint */
+
#include "awk.h"
#ifndef O_RDONLY
diff --git a/gnu/usr.bin/gawk/iop.c b/gnu/usr.bin/gawk/iop.c
index 0d7af1213db..62f5a1fb724 100644
--- a/gnu/usr.bin/gawk/iop.c
+++ b/gnu/usr.bin/gawk/iop.c
@@ -23,6 +23,10 @@
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef lint
+static char rcsid[] = "$Id: iop.c,v 1.2 1993/08/02 17:29:54 mycroft Exp $";
+#endif /* not lint */
+
#include "awk.h"
#ifndef atarist
diff --git a/gnu/usr.bin/gawk/msg.c b/gnu/usr.bin/gawk/msg.c
index b60fe9d1e5e..508935ac523 100644
--- a/gnu/usr.bin/gawk/msg.c
+++ b/gnu/usr.bin/gawk/msg.c
@@ -23,6 +23,10 @@
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef lint
+static char rcsid[] = "$Id: msg.c,v 1.2 1993/08/02 17:29:55 mycroft Exp $";
+#endif /* not lint */
+
#include "awk.h"
int sourceline = 0;
diff --git a/gnu/usr.bin/gawk/node.c b/gnu/usr.bin/gawk/node.c
index 65ecb0ed172..9ac2469f81e 100644
--- a/gnu/usr.bin/gawk/node.c
+++ b/gnu/usr.bin/gawk/node.c
@@ -23,6 +23,10 @@
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef lint
+static char rcsid[] = "$Id: node.c,v 1.2 1993/08/02 17:29:58 mycroft Exp $";
+#endif /* not lint */
+
#include "awk.h"
extern double strtod();
diff --git a/gnu/usr.bin/gawk/patchlevel.h b/gnu/usr.bin/gawk/patchlevel.h
index c6161a1f274..52310646c64 100644
--- a/gnu/usr.bin/gawk/patchlevel.h
+++ b/gnu/usr.bin/gawk/patchlevel.h
@@ -1 +1,3 @@
+/* $Id: patchlevel.h,v 1.2 1993/08/02 17:30:00 mycroft Exp $ */
+
#define PATCHLEVEL 2
diff --git a/gnu/usr.bin/gawk/protos.h b/gnu/usr.bin/gawk/protos.h
index 25af32165b0..8c2980550a8 100644
--- a/gnu/usr.bin/gawk/protos.h
+++ b/gnu/usr.bin/gawk/protos.h
@@ -21,6 +21,8 @@
* You should have received a copy of the GNU General Public License
* along with GAWK; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * $Id: protos.h,v 1.2 1993/08/02 17:30:01 mycroft Exp $
*/
#ifdef __STDC__
diff --git a/gnu/usr.bin/gawk/re.c b/gnu/usr.bin/gawk/re.c
index 495b0963cad..4407cebf178 100644
--- a/gnu/usr.bin/gawk/re.c
+++ b/gnu/usr.bin/gawk/re.c
@@ -23,6 +23,10 @@
* the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef lint
+static char rcsid[] = "$Id: re.c,v 1.2 1993/08/02 17:30:03 mycroft Exp $";
+#endif /* not lint */
+
#include "awk.h"
/* Generate compiled regular expressions */
diff --git a/gnu/usr.bin/gawk/regex.c b/gnu/usr.bin/gawk/regex.c
index f4dd4c2cd24..916637be532 100644
--- a/gnu/usr.bin/gawk/regex.c
+++ b/gnu/usr.bin/gawk/regex.c
@@ -15,6 +15,9 @@
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.2 1993/08/02 17:30:07 mycroft Exp $";
+#endif /* not lint */
/* To test, compile with -Dtest. This Dtestable feature turns this into
a self-contained program which reads a pattern, describes how it
diff --git a/gnu/usr.bin/gawk/regex.h b/gnu/usr.bin/gawk/regex.h
index fce11c3a97d..3b22220b20e 100644
--- a/gnu/usr.bin/gawk/regex.h
+++ b/gnu/usr.bin/gawk/regex.h
@@ -14,8 +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, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ $Id: regex.h,v 1.2 1993/08/02 17:30:13 mycroft Exp $
+*/
#ifndef __REGEXP_LIBRARY
#define __REGEXP_LIBRARY