diff options
| author | svn2git <svn2git@FreeBSD.org> | 1994-05-01 08:00:00 +0000 |
|---|---|---|
| committer | svn2git <svn2git@FreeBSD.org> | 1994-05-01 08:00:00 +0000 |
| commit | a16f65c7d117419bd266c28a1901ef129a337569 (patch) | |
| tree | 2626602f66dc3551e7a7c7bc9ad763c3bc7ab40a /usr.bin/lex | |
| parent | 8503f4f13f77abf7adc8f7e329c6f9c1d52b6a20 (diff) | |
Release FreeBSD 1.1upstream/1.1.0_cvsrelease/1.1.0_cvs
This commit was manufactured to restore the state of the 1.1-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
Diffstat (limited to 'usr.bin/lex')
| -rw-r--r-- | usr.bin/lex/ccl.c | 2 | ||||
| -rw-r--r-- | usr.bin/lex/dfa.c | 2 | ||||
| -rw-r--r-- | usr.bin/lex/ecs.c | 2 | ||||
| -rw-r--r-- | usr.bin/lex/flexdef.h | 2 | ||||
| -rw-r--r-- | usr.bin/lex/gen.c | 2 | ||||
| -rw-r--r-- | usr.bin/lex/initscan.c | 4 | ||||
| -rw-r--r-- | usr.bin/lex/lex.skel | 4 | ||||
| -rw-r--r-- | usr.bin/lex/lib/Makefile | 3 | ||||
| -rw-r--r-- | usr.bin/lex/lib/libmain.c | 2 | ||||
| -rw-r--r-- | usr.bin/lex/main.c | 2 | ||||
| -rw-r--r-- | usr.bin/lex/misc.c | 2 | ||||
| -rw-r--r-- | usr.bin/lex/nfa.c | 2 | ||||
| -rw-r--r-- | usr.bin/lex/parse.y | 2 | ||||
| -rw-r--r-- | usr.bin/lex/scan.l | 2 | ||||
| -rw-r--r-- | usr.bin/lex/sym.c | 2 | ||||
| -rw-r--r-- | usr.bin/lex/tblcmp.c | 2 | ||||
| -rw-r--r-- | usr.bin/lex/yylex.c | 2 |
17 files changed, 21 insertions, 18 deletions
diff --git a/usr.bin/lex/ccl.c b/usr.bin/lex/ccl.c index 99762fe230cd..0b9942e1f992 100644 --- a/usr.bin/lex/ccl.c +++ b/usr.bin/lex/ccl.c @@ -28,7 +28,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/ccl.c,v 1.2 1993/06/29 03:27:05 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/ccl.c,v 1.2 1993/06/29 03:27:05 nate Exp $ (LBL)"; #endif #include "flexdef.h" diff --git a/usr.bin/lex/dfa.c b/usr.bin/lex/dfa.c index d24f39d55396..c66e02533740 100644 --- a/usr.bin/lex/dfa.c +++ b/usr.bin/lex/dfa.c @@ -28,7 +28,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/dfa.c,v 1.2 1993/06/29 03:27:06 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/dfa.c,v 1.2 1993/06/29 03:27:06 nate Exp $ (LBL)"; #endif #include "flexdef.h" diff --git a/usr.bin/lex/ecs.c b/usr.bin/lex/ecs.c index d20baf5fc5f5..711f6fca6187 100644 --- a/usr.bin/lex/ecs.c +++ b/usr.bin/lex/ecs.c @@ -28,7 +28,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/ecs.c,v 1.2 1993/06/29 03:27:07 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/ecs.c,v 1.2 1993/06/29 03:27:07 nate Exp $ (LBL)"; #endif #include "flexdef.h" diff --git a/usr.bin/lex/flexdef.h b/usr.bin/lex/flexdef.h index 82e48ecb644a..a7bd7f7be55f 100644 --- a/usr.bin/lex/flexdef.h +++ b/usr.bin/lex/flexdef.h @@ -26,7 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -/* @(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/flexdef.h,v 1.3 1993/07/06 18:06:49 nate Exp $ (LBL) */ +/* @(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/flexdef.h,v 1.3 1993/07/06 18:06:49 nate Exp $ (LBL) */ #ifndef FILE #include <stdio.h> diff --git a/usr.bin/lex/gen.c b/usr.bin/lex/gen.c index 92609c60ed2a..bd35e4e7d41e 100644 --- a/usr.bin/lex/gen.c +++ b/usr.bin/lex/gen.c @@ -28,7 +28,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/gen.c,v 1.2 1993/06/29 03:27:10 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/gen.c,v 1.2 1993/06/29 03:27:10 nate Exp $ (LBL)"; #endif #include "flexdef.h" diff --git a/usr.bin/lex/initscan.c b/usr.bin/lex/initscan.c index d907ab35bd0c..8b62256af00f 100644 --- a/usr.bin/lex/initscan.c +++ b/usr.bin/lex/initscan.c @@ -1,7 +1,7 @@ /* A lexical scanner generated by flex */ /* scanner skeleton version: - * $Header: /a/cvs/386BSD/src/usr.bin/lex/initscan.c,v 1.2 1993/06/29 03:27:12 nate Exp $ + * $Header: /home/cvs/386BSD/src/usr.bin/lex/initscan.c,v 1.2 1993/06/29 03:27:12 nate Exp $ */ #define FLEX_SCANNER @@ -196,7 +196,7 @@ typedef struct yy_buffer_state *YY_BUFFER_STATE; #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/initscan.c,v 1.2 1993/06/29 03:27:12 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/initscan.c,v 1.2 1993/06/29 03:27:12 nate Exp $ (LBL)"; #endif #undef yywrap diff --git a/usr.bin/lex/lex.skel b/usr.bin/lex/lex.skel index 845c8094c230..552ae44971c4 100644 --- a/usr.bin/lex/lex.skel +++ b/usr.bin/lex/lex.skel @@ -1,7 +1,7 @@ /* A lexical scanner generated by flex */ /* scanner skeleton version: - * $Header: /a/cvs/386BSD/src/usr.bin/lex/lex.skel,v 1.2 1993/06/29 03:27:14 nate Exp $ + * $Header: /home/cvs/386BSD/src/usr.bin/lex/lex.skel,v 1.4 1993/12/03 00:05:27 ats Exp $ */ #define FLEX_SCANNER @@ -91,7 +91,7 @@ int read(); * is returned in "result". */ #define YY_INPUT(buf,result,max_size) \ - if ( (result = read( fileno(yyin), (char *) buf, max_size )) < 0 ) \ + if ( (result = read(fileno(yyin), (char *)buf, max_size)) < 0 ) \ YY_FATAL_ERROR( "read() in flex scanner failed" ); #define YY_NULL 0 diff --git a/usr.bin/lex/lib/Makefile b/usr.bin/lex/lib/Makefile index 6d5fbc23662a..a1d0fb427853 100644 --- a/usr.bin/lex/lib/Makefile +++ b/usr.bin/lex/lib/Makefile @@ -1,5 +1,8 @@ # @(#)Makefile 5.1 (Berkeley) 6/18/90 +SHLIB_MAJOR=1 +SHLIB_MINOR=0 + LIB= ln SRCS= libmain.c LINKS= ${LIBDIR}/libln.a ${LIBDIR}/libl.a \ diff --git a/usr.bin/lex/lib/libmain.c b/usr.bin/lex/lib/libmain.c index 0848edc64d32..247fcf6af736 100644 --- a/usr.bin/lex/lib/libmain.c +++ b/usr.bin/lex/lib/libmain.c @@ -1,6 +1,6 @@ /* libmain - flex run-time support library "main" function */ -/* $Header: /a/cvs/386BSD/src/usr.bin/lex/lib/libmain.c,v 1.2 1993/06/29 03:27:29 nate Exp $ */ +/* $Header: /home/cvs/386BSD/src/usr.bin/lex/lib/libmain.c,v 1.2 1993/06/29 03:27:29 nate Exp $ */ extern int yylex(); diff --git a/usr.bin/lex/main.c b/usr.bin/lex/main.c index fcd5c32d89a3..bcad18a31303 100644 --- a/usr.bin/lex/main.c +++ b/usr.bin/lex/main.c @@ -34,7 +34,7 @@ char copyright[] = #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/main.c,v 1.2 1993/06/29 03:27:15 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/main.c,v 1.2 1993/06/29 03:27:15 nate Exp $ (LBL)"; #endif diff --git a/usr.bin/lex/misc.c b/usr.bin/lex/misc.c index a113bb4fe19f..ae400504ba3d 100644 --- a/usr.bin/lex/misc.c +++ b/usr.bin/lex/misc.c @@ -28,7 +28,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/misc.c,v 1.2 1993/06/29 03:27:16 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/misc.c,v 1.2 1993/06/29 03:27:16 nate Exp $ (LBL)"; #endif #include <ctype.h> diff --git a/usr.bin/lex/nfa.c b/usr.bin/lex/nfa.c index 3926f8d84399..d43fcb22ffb5 100644 --- a/usr.bin/lex/nfa.c +++ b/usr.bin/lex/nfa.c @@ -28,7 +28,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/nfa.c,v 1.2 1993/06/29 03:27:17 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/nfa.c,v 1.2 1993/06/29 03:27:17 nate Exp $ (LBL)"; #endif #include "flexdef.h" diff --git a/usr.bin/lex/parse.y b/usr.bin/lex/parse.y index 5cba911ab336..730573a5b8d2 100644 --- a/usr.bin/lex/parse.y +++ b/usr.bin/lex/parse.y @@ -32,7 +32,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/parse.y,v 1.2 1993/06/29 03:27:18 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/parse.y,v 1.2 1993/06/29 03:27:18 nate Exp $ (LBL)"; #endif #include "flexdef.h" diff --git a/usr.bin/lex/scan.l b/usr.bin/lex/scan.l index c0a3ad3832ee..278235f19ee2 100644 --- a/usr.bin/lex/scan.l +++ b/usr.bin/lex/scan.l @@ -30,7 +30,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/scan.l,v 1.2 1993/06/29 03:27:19 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/scan.l,v 1.2 1993/06/29 03:27:19 nate Exp $ (LBL)"; #endif #undef yywrap diff --git a/usr.bin/lex/sym.c b/usr.bin/lex/sym.c index 78841d6e309b..ce47739a379a 100644 --- a/usr.bin/lex/sym.c +++ b/usr.bin/lex/sym.c @@ -28,7 +28,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/sym.c,v 1.2 1993/06/29 03:27:19 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/sym.c,v 1.2 1993/06/29 03:27:19 nate Exp $ (LBL)"; #endif #include "flexdef.h" diff --git a/usr.bin/lex/tblcmp.c b/usr.bin/lex/tblcmp.c index 1ee8e4a0d66c..6e4b2d0527de 100644 --- a/usr.bin/lex/tblcmp.c +++ b/usr.bin/lex/tblcmp.c @@ -28,7 +28,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/tblcmp.c,v 1.2 1993/06/29 03:27:20 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/tblcmp.c,v 1.2 1993/06/29 03:27:20 nate Exp $ (LBL)"; #endif #include "flexdef.h" diff --git a/usr.bin/lex/yylex.c b/usr.bin/lex/yylex.c index f01e92ad1afc..aee0492f58e5 100644 --- a/usr.bin/lex/yylex.c +++ b/usr.bin/lex/yylex.c @@ -28,7 +28,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Header: /a/cvs/386BSD/src/usr.bin/lex/yylex.c,v 1.2 1993/06/29 03:27:21 nate Exp $ (LBL)"; + "@(#) $Header: /home/cvs/386BSD/src/usr.bin/lex/yylex.c,v 1.2 1993/06/29 03:27:21 nate Exp $ (LBL)"; #endif #include <ctype.h> |
