summaryrefslogtreecommitdiff
path: root/lib/libcompat
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 /lib/libcompat
parentc8194f0876b272d70833a6b91ec566314a02050a (diff)
Add RCS identifiers, remove some completely useless RCS logs and patchkit
headers, and a few other insignificant changes.
Diffstat (limited to 'lib/libcompat')
-rw-r--r--lib/libcompat/4.1/ftime.c4
-rw-r--r--lib/libcompat/Makefile4
-rw-r--r--lib/libcompat/ftime.c4
-rw-r--r--lib/libcompat/regexp/regerror.c4
-rw-r--r--lib/libcompat/regexp/regexp.c5
-rw-r--r--lib/libcompat/regexp/regexp.h3
-rw-r--r--lib/libcompat/regexp/regmagic.h2
-rw-r--r--lib/libcompat/regexp/regsub.c5
8 files changed, 30 insertions, 1 deletions
diff --git a/lib/libcompat/4.1/ftime.c b/lib/libcompat/4.1/ftime.c
index 370f0926b2e..51333e47ab2 100644
--- a/lib/libcompat/4.1/ftime.c
+++ b/lib/libcompat/4.1/ftime.c
@@ -31,6 +31,10 @@
* SUCH DAMAGE.
*/
+#ifndef lint
+static char rcsid[] = "$Id: ftime.c,v 1.2 1993/08/02 17:50:05 mycroft Exp $";
+#endif /* not lint */
+
#include <sys/types.h>
#include <sys/time.h>
#include <sys/timeb.h>
diff --git a/lib/libcompat/Makefile b/lib/libcompat/Makefile
index 73916b93752..003a436d75c 100644
--- a/lib/libcompat/Makefile
+++ b/lib/libcompat/Makefile
@@ -1,4 +1,6 @@
-LIB=compat
+# $Id: Makefile,v 1.3 1993/08/02 17:50:04 mycroft Exp $
+
+LIB= compat
SRCS= ftime.c regex.c
CFLAGS+= -I. -I${.CURDIR} -DNDEBUG
diff --git a/lib/libcompat/ftime.c b/lib/libcompat/ftime.c
index 370f0926b2e..51333e47ab2 100644
--- a/lib/libcompat/ftime.c
+++ b/lib/libcompat/ftime.c
@@ -31,6 +31,10 @@
* SUCH DAMAGE.
*/
+#ifndef lint
+static char rcsid[] = "$Id: ftime.c,v 1.2 1993/08/02 17:50:05 mycroft Exp $";
+#endif /* not lint */
+
#include <sys/types.h>
#include <sys/time.h>
#include <sys/timeb.h>
diff --git a/lib/libcompat/regexp/regerror.c b/lib/libcompat/regexp/regerror.c
index 6d0077d6342..e1fe0a6abd5 100644
--- a/lib/libcompat/regexp/regerror.c
+++ b/lib/libcompat/regexp/regerror.c
@@ -1,3 +1,7 @@
+#ifndef lint
+static char rcsid[] = "$Id: regerror.c,v 1.2 1993/08/02 17:49:28 mycroft Exp $";
+#endif /* not lint */
+
#include <regexp.h>
#include <stdio.h>
diff --git a/lib/libcompat/regexp/regexp.c b/lib/libcompat/regexp/regexp.c
index 0084295bfb3..691175eacd2 100644
--- a/lib/libcompat/regexp/regexp.c
+++ b/lib/libcompat/regexp/regexp.c
@@ -32,6 +32,11 @@
* precedence is structured in regular expressions. Serious changes in
* regular-expression syntax might require a total rethink.
*/
+
+#ifndef lint
+static char rcsid[] = "$Id: regexp.c,v 1.2 1993/08/02 17:49:30 mycroft Exp $";
+#endif /* not lint */
+
#include <regexp.h>
#include <stdio.h>
#include <ctype.h>
diff --git a/lib/libcompat/regexp/regexp.h b/lib/libcompat/regexp/regexp.h
index 73d6bf41242..4bdd889709c 100644
--- a/lib/libcompat/regexp/regexp.h
+++ b/lib/libcompat/regexp/regexp.h
@@ -3,7 +3,10 @@
*
* Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
* not the System V one.
+ *
+ * $Id: regexp.h,v 1.2 1993/08/02 17:49:31 mycroft Exp $
*/
+
#define NSUBEXP 10
typedef struct regexp {
char *startp[NSUBEXP];
diff --git a/lib/libcompat/regexp/regmagic.h b/lib/libcompat/regexp/regmagic.h
index 5acf4478ff7..cebb828af11 100644
--- a/lib/libcompat/regexp/regmagic.h
+++ b/lib/libcompat/regexp/regmagic.h
@@ -1,3 +1,5 @@
+/* $Id: regmagic.h,v 1.2 1993/08/02 17:49:32 mycroft Exp $ */
+
/*
* The first byte of the regexp internal "program" is actually this magic
* number; the start node begins in the second byte.
diff --git a/lib/libcompat/regexp/regsub.c b/lib/libcompat/regexp/regsub.c
index e55b9b624d1..babedcff198 100644
--- a/lib/libcompat/regexp/regsub.c
+++ b/lib/libcompat/regexp/regsub.c
@@ -18,6 +18,11 @@
* 3. Altered versions must be plainly marked as such, and must not
* be misrepresented as being the original software.
*/
+
+#ifndef lint
+static char rcsid[] = "$Id: regsub.c,v 1.2 1993/08/02 17:49:33 mycroft Exp $";
+#endif /* not lint */
+
#include <regexp.h>
#include <stdio.h>
#include <string.h>