summaryrefslogtreecommitdiff
path: root/usr.bin/lex
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/lex')
-rw-r--r--usr.bin/lex/FlexLexer.h4
-rw-r--r--usr.bin/lex/Makefile3
-rw-r--r--usr.bin/lex/ccl.c4
-rw-r--r--usr.bin/lex/config.h4
-rw-r--r--usr.bin/lex/dfa.c4
-rw-r--r--usr.bin/lex/ecs.c4
-rw-r--r--usr.bin/lex/flex.12
-rw-r--r--usr.bin/lex/flex.skl4
-rw-r--r--usr.bin/lex/flexdef.h4
-rw-r--r--usr.bin/lex/gen.c4
-rw-r--r--usr.bin/lex/initscan.c6
-rw-r--r--usr.bin/lex/libmain.c4
-rw-r--r--usr.bin/lex/libyywrap.c4
-rw-r--r--usr.bin/lex/main.c4
-rw-r--r--usr.bin/lex/misc.c4
-rw-r--r--usr.bin/lex/mkskel.sh2
-rw-r--r--usr.bin/lex/nfa.c4
-rw-r--r--usr.bin/lex/parse.y4
-rw-r--r--usr.bin/lex/pathnames.h2
-rw-r--r--usr.bin/lex/scan.l4
-rw-r--r--usr.bin/lex/sym.c4
-rw-r--r--usr.bin/lex/tblcmp.c4
-rw-r--r--usr.bin/lex/version.h2
-rw-r--r--usr.bin/lex/yylex.c4
24 files changed, 67 insertions, 22 deletions
diff --git a/usr.bin/lex/FlexLexer.h b/usr.bin/lex/FlexLexer.h
index dffe15bacac..a47a45ab55c 100644
--- a/usr.bin/lex/FlexLexer.h
+++ b/usr.bin/lex/FlexLexer.h
@@ -1,4 +1,6 @@
-// $Header: /cvs/OpenBSD/src/usr.bin/lex/FlexLexer.h,v 1.1 1995/10/18 08:45:29 deraadt Exp $
+/* $OpenBSD: FlexLexer.h,v 1.2 1996/06/26 05:35:27 deraadt Exp $ */
+
+// $Header: /cvs/OpenBSD/src/usr.bin/lex/FlexLexer.h,v 1.2 1996/06/26 05:35:27 deraadt Exp $
// FlexLexer.h -- define interfaces for lexical analyzer classes generated
// by flex
diff --git a/usr.bin/lex/Makefile b/usr.bin/lex/Makefile
index 6a33b39d544..a71748b9785 100644
--- a/usr.bin/lex/Makefile
+++ b/usr.bin/lex/Makefile
@@ -1,5 +1,4 @@
-# from: @(#)Makefile 5.4 (Berkeley) 6/24/90
-# $Id: Makefile,v 1.1 1995/10/18 08:45:29 deraadt Exp $
+# $OpenBSD: Makefile,v 1.2 1996/06/26 05:35:27 deraadt Exp $
#
# By default, flex will be configured to generate 8-bit scanners only if the
# -8 flag is given. If you want it to always generate 8-bit scanners, add
diff --git a/usr.bin/lex/ccl.c b/usr.bin/lex/ccl.c
index 1622abe6d46..222ee718c15 100644
--- a/usr.bin/lex/ccl.c
+++ b/usr.bin/lex/ccl.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: ccl.c,v 1.2 1996/06/26 05:35:28 deraadt Exp $ */
+
/* ccl - routines for character classes */
/*-
@@ -26,7 +28,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/ccl.c,v 1.1 1995/10/18 08:45:29 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/ccl.c,v 1.2 1996/06/26 05:35:28 deraadt Exp $ */
#include "flexdef.h"
diff --git a/usr.bin/lex/config.h b/usr.bin/lex/config.h
index da27edddc62..d8c32e3c866 100644
--- a/usr.bin/lex/config.h
+++ b/usr.bin/lex/config.h
@@ -1,5 +1,7 @@
+/* $OpenBSD: config.h,v 1.2 1996/06/26 05:35:29 deraadt Exp $ */
+
/* config.h. Generated automatically by configure. */
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/config.h,v 1.1 1995/10/18 08:45:29 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/config.h,v 1.2 1996/06/26 05:35:29 deraadt Exp $ */
/* Define to empty if the keyword does not work. */
/* #undef const */
diff --git a/usr.bin/lex/dfa.c b/usr.bin/lex/dfa.c
index 945edc7062c..898d20b6a63 100644
--- a/usr.bin/lex/dfa.c
+++ b/usr.bin/lex/dfa.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: dfa.c,v 1.2 1996/06/26 05:35:29 deraadt Exp $ */
+
/* dfa - DFA construction routines */
/*-
@@ -26,7 +28,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/dfa.c,v 1.1 1995/10/18 08:45:29 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/dfa.c,v 1.2 1996/06/26 05:35:29 deraadt Exp $ */
#include "flexdef.h"
diff --git a/usr.bin/lex/ecs.c b/usr.bin/lex/ecs.c
index 5379c6272b7..53fe8e8acec 100644
--- a/usr.bin/lex/ecs.c
+++ b/usr.bin/lex/ecs.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: ecs.c,v 1.2 1996/06/26 05:35:30 deraadt Exp $ */
+
/* ecs - equivalence class routines */
/*-
@@ -26,7 +28,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/ecs.c,v 1.1 1995/10/18 08:45:29 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/ecs.c,v 1.2 1996/06/26 05:35:30 deraadt Exp $ */
#include "flexdef.h"
diff --git a/usr.bin/lex/flex.1 b/usr.bin/lex/flex.1
index f79a3ef409e..958c4d1f570 100644
--- a/usr.bin/lex/flex.1
+++ b/usr.bin/lex/flex.1
@@ -1,3 +1,5 @@
+.\" $OpenBSD: flex.1,v 1.2 1996/06/26 05:35:31 deraadt Exp $
+.\"
.TH FLEX 1 "April 1995" "Version 2.5"
.SH NAME
flex \- fast lexical analyzer generator
diff --git a/usr.bin/lex/flex.skl b/usr.bin/lex/flex.skl
index 1ee8c7a1121..527c70df21b 100644
--- a/usr.bin/lex/flex.skl
+++ b/usr.bin/lex/flex.skl
@@ -1,7 +1,9 @@
+/* $OpenBSD: flex.skl,v 1.2 1996/06/26 05:35:32 deraadt Exp $ */
+
/* A lexical scanner generated by flex */
/* Scanner skeleton version:
- * $Header: /cvs/OpenBSD/src/usr.bin/lex/flex.skl,v 1.1 1995/10/18 08:45:30 deraadt Exp $
+ * $Header: /cvs/OpenBSD/src/usr.bin/lex/flex.skl,v 1.2 1996/06/26 05:35:32 deraadt Exp $
*/
#define FLEX_SCANNER
diff --git a/usr.bin/lex/flexdef.h b/usr.bin/lex/flexdef.h
index ab002d0139a..cfc5d584e48 100644
--- a/usr.bin/lex/flexdef.h
+++ b/usr.bin/lex/flexdef.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: flexdef.h,v 1.2 1996/06/26 05:35:33 deraadt Exp $ */
+
/* flexdef - definitions file for flex */
/*-
@@ -26,7 +28,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* @(#) $Header: /cvs/OpenBSD/src/usr.bin/lex/flexdef.h,v 1.1 1995/10/18 08:45:30 deraadt Exp $ (LBL) */
+/* @(#) $Header: /cvs/OpenBSD/src/usr.bin/lex/flexdef.h,v 1.2 1996/06/26 05:35:33 deraadt Exp $ (LBL) */
#include <stdio.h>
#include <ctype.h>
diff --git a/usr.bin/lex/gen.c b/usr.bin/lex/gen.c
index 1813027ee2c..9d4aa8870c4 100644
--- a/usr.bin/lex/gen.c
+++ b/usr.bin/lex/gen.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: gen.c,v 1.2 1996/06/26 05:35:34 deraadt Exp $ */
+
/* gen - actual generation (writing) of flex scanners */
/*-
@@ -26,7 +28,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/gen.c,v 1.1 1995/10/18 08:45:30 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/gen.c,v 1.2 1996/06/26 05:35:34 deraadt Exp $ */
#include "flexdef.h"
diff --git a/usr.bin/lex/initscan.c b/usr.bin/lex/initscan.c
index 9dc39aec367..80ed3f1684c 100644
--- a/usr.bin/lex/initscan.c
+++ b/usr.bin/lex/initscan.c
@@ -1,8 +1,10 @@
+/* $OpenBSD: initscan.c,v 1.2 1996/06/26 05:35:36 deraadt Exp $ */
+
#line 2 "scan.c"
/* A lexical scanner generated by flex */
/* Scanner skeleton version:
- * $Header: /cvs/OpenBSD/src/usr.bin/lex/initscan.c,v 1.1 1995/10/18 08:45:30 deraadt Exp $
+ * $Header: /cvs/OpenBSD/src/usr.bin/lex/initscan.c,v 1.2 1996/06/26 05:35:36 deraadt Exp $
*/
#define FLEX_SCANNER
@@ -1268,7 +1270,7 @@ char *yytext;
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/initscan.c,v 1.1 1995/10/18 08:45:30 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/initscan.c,v 1.2 1996/06/26 05:35:36 deraadt Exp $ */
#include "flexdef.h"
#include "parse.h"
diff --git a/usr.bin/lex/libmain.c b/usr.bin/lex/libmain.c
index eae814a1036..8d58cb686a6 100644
--- a/usr.bin/lex/libmain.c
+++ b/usr.bin/lex/libmain.c
@@ -1,6 +1,8 @@
+/* $OpenBSD: libmain.c,v 1.2 1996/06/26 05:35:36 deraadt Exp $ */
+
/* libmain - flex run-time support library "main" function */
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/libmain.c,v 1.1 1995/10/18 08:45:31 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/libmain.c,v 1.2 1996/06/26 05:35:36 deraadt Exp $ */
#include <sys/cdefs.h>
diff --git a/usr.bin/lex/libyywrap.c b/usr.bin/lex/libyywrap.c
index b5e1a15464b..c8bfed85d95 100644
--- a/usr.bin/lex/libyywrap.c
+++ b/usr.bin/lex/libyywrap.c
@@ -1,6 +1,8 @@
+/* $OpenBSD: libyywrap.c,v 1.2 1996/06/26 05:35:37 deraadt Exp $ */
+
/* libyywrap - flex run-time support library "yywrap" function */
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/libyywrap.c,v 1.1 1995/10/18 08:45:31 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/libyywrap.c,v 1.2 1996/06/26 05:35:37 deraadt Exp $ */
#include <sys/cdefs.h>
diff --git a/usr.bin/lex/main.c b/usr.bin/lex/main.c
index 02635e641cf..fc242a4af77 100644
--- a/usr.bin/lex/main.c
+++ b/usr.bin/lex/main.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: main.c,v 1.2 1996/06/26 05:35:38 deraadt Exp $ */
+
/* flex - tool to generate fast lexical analyzers */
/*-
@@ -32,7 +34,7 @@ char copyright[] =
All rights reserved.\n";
#endif /* not lint */
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/main.c,v 1.1 1995/10/18 08:45:31 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/main.c,v 1.2 1996/06/26 05:35:38 deraadt Exp $ */
#include "flexdef.h"
diff --git a/usr.bin/lex/misc.c b/usr.bin/lex/misc.c
index fe154349eee..6ba0d0bf805 100644
--- a/usr.bin/lex/misc.c
+++ b/usr.bin/lex/misc.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: misc.c,v 1.2 1996/06/26 05:35:38 deraadt Exp $ */
+
/* misc - miscellaneous flex routines */
/*-
@@ -26,7 +28,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/misc.c,v 1.1 1995/10/18 08:45:31 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/misc.c,v 1.2 1996/06/26 05:35:38 deraadt Exp $ */
#include "flexdef.h"
diff --git a/usr.bin/lex/mkskel.sh b/usr.bin/lex/mkskel.sh
index a03a11aba06..59f1a53808a 100644
--- a/usr.bin/lex/mkskel.sh
+++ b/usr.bin/lex/mkskel.sh
@@ -1,4 +1,6 @@
#! /bin/sh
+# $OpenBSD: mkskel.sh,v 1.2 1996/06/26 05:35:39 deraadt Exp $
+
cat <<!
/* File created from flex.skl via mkskel.sh */
diff --git a/usr.bin/lex/nfa.c b/usr.bin/lex/nfa.c
index 3a205ba26d9..8e1c79383a3 100644
--- a/usr.bin/lex/nfa.c
+++ b/usr.bin/lex/nfa.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: nfa.c,v 1.2 1996/06/26 05:35:40 deraadt Exp $ */
+
/* nfa - NFA construction routines */
/*-
@@ -26,7 +28,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/nfa.c,v 1.1 1995/10/18 08:45:31 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/nfa.c,v 1.2 1996/06/26 05:35:40 deraadt Exp $ */
#include "flexdef.h"
diff --git a/usr.bin/lex/parse.y b/usr.bin/lex/parse.y
index 04e8d806d9d..3321b97830d 100644
--- a/usr.bin/lex/parse.y
+++ b/usr.bin/lex/parse.y
@@ -1,3 +1,5 @@
+/* $OpenBSD: parse.y,v 1.2 1996/06/26 05:35:40 deraadt Exp $ */
+
/* parse.y - parser for flex input */
%token CHAR NUMBER SECTEND SCDECL XSCDECL NAME PREVCCL EOF_OP
@@ -33,7 +35,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/parse.y,v 1.1 1995/10/18 08:45:31 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/parse.y,v 1.2 1996/06/26 05:35:40 deraadt Exp $ */
/* Some versions of bison are broken in that they use alloca() but don't
diff --git a/usr.bin/lex/pathnames.h b/usr.bin/lex/pathnames.h
index 659a8108abb..4be35cb08c5 100644
--- a/usr.bin/lex/pathnames.h
+++ b/usr.bin/lex/pathnames.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: pathnames.h,v 1.2 1996/06/26 05:35:41 deraadt Exp $ */
+
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
diff --git a/usr.bin/lex/scan.l b/usr.bin/lex/scan.l
index 2aada16b478..e3bbd2fdbb3 100644
--- a/usr.bin/lex/scan.l
+++ b/usr.bin/lex/scan.l
@@ -1,3 +1,5 @@
+/* $OpenBSD: scan.l,v 1.2 1996/06/26 05:35:42 deraadt Exp $ */
+
/* scan.l - scanner for flex input */
%{
@@ -27,7 +29,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/scan.l,v 1.1 1995/10/18 08:45:32 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/scan.l,v 1.2 1996/06/26 05:35:42 deraadt Exp $ */
#include "flexdef.h"
#include "parse.h"
diff --git a/usr.bin/lex/sym.c b/usr.bin/lex/sym.c
index 7eea7dfa4dc..2cf7f1567ed 100644
--- a/usr.bin/lex/sym.c
+++ b/usr.bin/lex/sym.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: sym.c,v 1.2 1996/06/26 05:35:42 deraadt Exp $ */
+
/* sym - symbol table routines */
/*-
@@ -26,7 +28,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/sym.c,v 1.1 1995/10/18 08:45:32 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/sym.c,v 1.2 1996/06/26 05:35:42 deraadt Exp $ */
#include "flexdef.h"
diff --git a/usr.bin/lex/tblcmp.c b/usr.bin/lex/tblcmp.c
index a02527d0f47..1a9e18dd3ec 100644
--- a/usr.bin/lex/tblcmp.c
+++ b/usr.bin/lex/tblcmp.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: tblcmp.c,v 1.2 1996/06/26 05:35:43 deraadt Exp $ */
+
/* tblcmp - table compression routines */
/*-
@@ -26,7 +28,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/tblcmp.c,v 1.1 1995/10/18 08:45:32 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/tblcmp.c,v 1.2 1996/06/26 05:35:43 deraadt Exp $ */
#include "flexdef.h"
diff --git a/usr.bin/lex/version.h b/usr.bin/lex/version.h
index 7f709449257..89c2975e95a 100644
--- a/usr.bin/lex/version.h
+++ b/usr.bin/lex/version.h
@@ -1 +1,3 @@
+/* $OpenBSD: version.h,v 1.2 1996/06/26 05:35:44 deraadt Exp $ */
+
#define FLEX_VERSION "2.5.2"
diff --git a/usr.bin/lex/yylex.c b/usr.bin/lex/yylex.c
index fdef60c3a7f..1e6947e98c7 100644
--- a/usr.bin/lex/yylex.c
+++ b/usr.bin/lex/yylex.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: yylex.c,v 1.2 1996/06/26 05:35:44 deraadt Exp $ */
+
/* yylex - scanner front-end for flex */
/*-
@@ -26,7 +28,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvs/OpenBSD/src/usr.bin/lex/yylex.c,v 1.1 1995/10/18 08:45:32 deraadt Exp $ */
+/* $Header: /cvs/OpenBSD/src/usr.bin/lex/yylex.c,v 1.2 1996/06/26 05:35:44 deraadt Exp $ */
#include <ctype.h>
#include "flexdef.h"