diff options
-rw-r--r-- | usr.bin/lex/COPYING | 20 | ||||
-rw-r--r-- | usr.bin/lex/FlexLexer.h | 33 | ||||
-rw-r--r-- | usr.bin/lex/ccl.c | 33 | ||||
-rw-r--r-- | usr.bin/lex/dfa.c | 33 | ||||
-rw-r--r-- | usr.bin/lex/ecs.c | 33 | ||||
-rw-r--r-- | usr.bin/lex/flex.1 | 31 | ||||
-rw-r--r-- | usr.bin/lex/flexdef.h | 33 | ||||
-rw-r--r-- | usr.bin/lex/gen.c | 33 | ||||
-rw-r--r-- | usr.bin/lex/initscan.c | 37 | ||||
-rw-r--r-- | usr.bin/lex/main.c | 33 | ||||
-rw-r--r-- | usr.bin/lex/misc.c | 33 | ||||
-rw-r--r-- | usr.bin/lex/nfa.c | 33 | ||||
-rw-r--r-- | usr.bin/lex/parse.y | 33 | ||||
-rw-r--r-- | usr.bin/lex/scan.l | 33 | ||||
-rw-r--r-- | usr.bin/lex/sym.c | 33 | ||||
-rw-r--r-- | usr.bin/lex/tblcmp.c | 33 | ||||
-rw-r--r-- | usr.bin/lex/yylex.c | 33 |
17 files changed, 316 insertions, 234 deletions
diff --git a/usr.bin/lex/COPYING b/usr.bin/lex/COPYING index 63c8555826d..fdfcd894b56 100644 --- a/usr.bin/lex/COPYING +++ b/usr.bin/lex/COPYING @@ -13,15 +13,17 @@ which operates under a contract with the Department of Energy: Department of Energy and the University of California. Redistribution and use in source and binary forms, with or without - modification, are permitted provided that: (1) source distributions - retain this entire copyright notice and comment, and (2) distributions - including binaries display the following acknowledgement: ``This product - includes software developed by the University of California, - Berkeley and its contributors'' in the documentation or other - materials provided with the distribution and in all advertising - materials mentioning features or use of this software. Neither the - name of the University nor the names of its contributors may be - used to endorse or promote products derived from this software + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR diff --git a/usr.bin/lex/FlexLexer.h b/usr.bin/lex/FlexLexer.h index 8776f187873..2d2db0db479 100644 --- a/usr.bin/lex/FlexLexer.h +++ b/usr.bin/lex/FlexLexer.h @@ -1,6 +1,6 @@ -/* $OpenBSD: FlexLexer.h,v 1.4 2001/06/17 07:30:42 deraadt Exp $ */ +/* $OpenBSD: FlexLexer.h,v 1.5 2003/06/04 17:34:44 millert Exp $ */ -// $Header: /cvs/OpenBSD/src/usr.bin/lex/FlexLexer.h,v 1.4 2001/06/17 07:30:42 deraadt Exp $ +// $Header: /cvs/OpenBSD/src/usr.bin/lex/FlexLexer.h,v 1.5 2003/06/04 17:34:44 millert Exp $ // FlexLexer.h -- define interfaces for lexical analyzer classes generated // by flex @@ -12,18 +12,23 @@ // Kent Williams and Tom Epperly. // // Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that: (1) source distributions -// retain this entire copyright notice and comment, and (2) distributions -// including binaries display the following acknowledgement: ``This product -// includes software developed by the University of California, Berkeley -// and its contributors'' in the documentation or other materials provided -// with the distribution and in all advertising materials mentioning -// features or use of this software. Neither the name of the University nor -// the names of its contributors may be used to endorse or promote products -// derived from this software without specific prior written permission. -// THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED -// WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +// modification, are permitted provided that the following conditions +// are met: +// +// 1. Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// 2. Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// Neither the name of the University nor the names of its contributors +// may be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR +// IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +// PURPOSE. // This file defines FlexLexer, an abstract class which specifies the // external interface provided to flex C++ lexer objects, and yyFlexLexer, diff --git a/usr.bin/lex/ccl.c b/usr.bin/lex/ccl.c index 59272928493..5226940320f 100644 --- a/usr.bin/lex/ccl.c +++ b/usr.bin/lex/ccl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ccl.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ +/* $OpenBSD: ccl.c,v 1.6 2003/06/04 17:34:44 millert Exp $ */ /* ccl - routines for character classes */ @@ -14,21 +14,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/ccl.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/ccl.c,v 1.6 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" diff --git a/usr.bin/lex/dfa.c b/usr.bin/lex/dfa.c index 89757b1adfb..ba3e62f1525 100644 --- a/usr.bin/lex/dfa.c +++ b/usr.bin/lex/dfa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dfa.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ +/* $OpenBSD: dfa.c,v 1.6 2003/06/04 17:34:44 millert Exp $ */ /* dfa - DFA construction routines */ @@ -14,21 +14,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/dfa.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/dfa.c,v 1.6 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" diff --git a/usr.bin/lex/ecs.c b/usr.bin/lex/ecs.c index bbb17c11c86..7dfb5423eee 100644 --- a/usr.bin/lex/ecs.c +++ b/usr.bin/lex/ecs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecs.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ +/* $OpenBSD: ecs.c,v 1.6 2003/06/04 17:34:44 millert Exp $ */ /* ecs - equivalence class routines */ @@ -14,21 +14,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/ecs.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/ecs.c,v 1.6 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" diff --git a/usr.bin/lex/flex.1 b/usr.bin/lex/flex.1 index 4030c5dd2b3..76a92e44e41 100644 --- a/usr.bin/lex/flex.1 +++ b/usr.bin/lex/flex.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: flex.1,v 1.12 2003/02/18 07:43:36 jmc Exp $ +.\" $OpenBSD: flex.1,v 1.13 2003/06/04 17:34:44 millert Exp $ .\" .\" Copyright (c) 1990 The Regents of the University of California. .\" All rights reserved. @@ -11,18 +11,23 @@ .\" Department of Energy and the University of California. .\" .\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that: (1) source distributions -.\" retain this entire copyright notice and comment, and (2) distributions -.\" including binaries display the following acknowledgement: ``This product -.\" includes software developed by the University of California, Berkeley -.\" and its contributors'' in the documentation or other materials provided -.\" with the distribution and in all advertising materials mentioning -.\" features or use of this software. Neither the name of the University nor -.\" the names of its contributors may be used to endorse or promote products -.\" derived from this software without specific prior written permission. -.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED -.\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -.\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" Neither the name of the University nor the names of its contributors +.\" may be used to endorse or promote products derived from this software +.\" without specific prior written permission. +.\" +.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR +.\" IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +.\" PURPOSE. .\" .TH FLEX 1 "April 1995" "Version 2.5" .SH NAME diff --git a/usr.bin/lex/flexdef.h b/usr.bin/lex/flexdef.h index 4e4368c879d..39d04033478 100644 --- a/usr.bin/lex/flexdef.h +++ b/usr.bin/lex/flexdef.h @@ -1,4 +1,4 @@ -/* $OpenBSD: flexdef.h,v 1.5 2001/06/17 07:30:42 deraadt Exp $ */ +/* $OpenBSD: flexdef.h,v 1.6 2003/06/04 17:34:44 millert Exp $ */ /* flexdef - definitions file for flex */ @@ -14,21 +14,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* @(#) $Header: /cvs/OpenBSD/src/usr.bin/lex/flexdef.h,v 1.5 2001/06/17 07:30:42 deraadt Exp $ (LBL) */ +/* @(#) $Header: /cvs/OpenBSD/src/usr.bin/lex/flexdef.h,v 1.6 2003/06/04 17:34:44 millert Exp $ (LBL) */ #include <stdio.h> #include <ctype.h> diff --git a/usr.bin/lex/gen.c b/usr.bin/lex/gen.c index 6ee7f739ec4..19373f84cfa 100644 --- a/usr.bin/lex/gen.c +++ b/usr.bin/lex/gen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gen.c,v 1.9 2002/05/31 22:49:29 deraadt Exp $ */ +/* $OpenBSD: gen.c,v 1.10 2003/06/04 17:34:44 millert Exp $ */ /* gen - actual generation (writing) of flex scanners */ @@ -14,21 +14,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/gen.c,v 1.9 2002/05/31 22:49:29 deraadt Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/gen.c,v 1.10 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" diff --git a/usr.bin/lex/initscan.c b/usr.bin/lex/initscan.c index 6cf3e210306..1b5c39a7db3 100644 --- a/usr.bin/lex/initscan.c +++ b/usr.bin/lex/initscan.c @@ -1,10 +1,10 @@ -/* $OpenBSD: initscan.c,v 1.9 2002/05/31 22:49:29 deraadt Exp $ */ +/* $OpenBSD: initscan.c,v 1.10 2003/06/04 17:34:44 millert 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.9 2002/05/31 22:49:29 deraadt Exp $ + * $Header: /cvs/OpenBSD/src/usr.bin/lex/initscan.c,v 1.10 2003/06/04 17:34:44 millert Exp $ */ #define FLEX_SCANNER @@ -1257,22 +1257,27 @@ char *yytext; * to contract no. DE-AC03-76SF00098 between the United States * Department of Energy and the University of California. * - * Redistribution and use in source and binary forms are permitted provided - * that: (1) source distributions retain this entire copyright notice and - * comment, and (2) distributions including binaries display the following - * acknowledgement: ``This product includes software developed by the - * University of California, Berkeley and its contributors'' in the - * documentation or other materials provided with the distribution and in - * all advertising materials mentioning features or use of this software. - * Neither the name of the University nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/initscan.c,v 1.9 2002/05/31 22:49:29 deraadt Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/initscan.c,v 1.10 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" #include "parse.h" diff --git a/usr.bin/lex/main.c b/usr.bin/lex/main.c index a3677ea09c6..814b77b1593 100644 --- a/usr.bin/lex/main.c +++ b/usr.bin/lex/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.8 2002/05/31 22:49:29 deraadt Exp $ */ +/* $OpenBSD: main.c,v 1.9 2003/06/04 17:34:44 millert Exp $ */ /* flex - tool to generate fast lexical analyzers */ @@ -14,18 +14,23 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ #ifndef lint @@ -34,7 +39,7 @@ char copyright[] = All rights reserved.\n"; #endif /* not lint */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/main.c,v 1.8 2002/05/31 22:49:29 deraadt Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/main.c,v 1.9 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" diff --git a/usr.bin/lex/misc.c b/usr.bin/lex/misc.c index 39105e0441d..08c9f910c62 100644 --- a/usr.bin/lex/misc.c +++ b/usr.bin/lex/misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.c,v 1.10 2003/04/08 00:18:13 deraadt Exp $ */ +/* $OpenBSD: misc.c,v 1.11 2003/06/04 17:34:44 millert Exp $ */ /* misc - miscellaneous flex routines */ @@ -14,21 +14,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/misc.c,v 1.10 2003/04/08 00:18:13 deraadt Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/misc.c,v 1.11 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" diff --git a/usr.bin/lex/nfa.c b/usr.bin/lex/nfa.c index 92db40e8374..bbf3d8d6bf7 100644 --- a/usr.bin/lex/nfa.c +++ b/usr.bin/lex/nfa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfa.c,v 1.8 2002/05/31 22:49:29 deraadt Exp $ */ +/* $OpenBSD: nfa.c,v 1.9 2003/06/04 17:34:44 millert Exp $ */ /* nfa - NFA construction routines */ @@ -14,21 +14,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/nfa.c,v 1.8 2002/05/31 22:49:29 deraadt Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/nfa.c,v 1.9 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" diff --git a/usr.bin/lex/parse.y b/usr.bin/lex/parse.y index e0edcdf0c85..76440edc2f5 100644 --- a/usr.bin/lex/parse.y +++ b/usr.bin/lex/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.7 2002/05/31 22:49:29 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.8 2003/06/04 17:34:44 millert Exp $ */ /* parse.y - parser for flex input */ @@ -21,21 +21,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/parse.y,v 1.7 2002/05/31 22:49:29 deraadt Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/parse.y,v 1.8 2003/06/04 17:34:44 millert Exp $ */ /* Some versions of bison are broken in that they use alloca() but don't diff --git a/usr.bin/lex/scan.l b/usr.bin/lex/scan.l index dcdad125ccf..695cea12a72 100644 --- a/usr.bin/lex/scan.l +++ b/usr.bin/lex/scan.l @@ -1,4 +1,4 @@ -/* $OpenBSD: scan.l,v 1.7 2002/05/31 22:49:29 deraadt Exp $ */ +/* $OpenBSD: scan.l,v 1.8 2003/06/04 17:34:44 millert Exp $ */ /* scan.l - scanner for flex input */ @@ -15,21 +15,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/scan.l,v 1.7 2002/05/31 22:49:29 deraadt Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/scan.l,v 1.8 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" #include "parse.h" diff --git a/usr.bin/lex/sym.c b/usr.bin/lex/sym.c index 7f94fb44de7..9a9f3b1bb91 100644 --- a/usr.bin/lex/sym.c +++ b/usr.bin/lex/sym.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sym.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ +/* $OpenBSD: sym.c,v 1.6 2003/06/04 17:34:44 millert Exp $ */ /* sym - symbol table routines */ @@ -14,21 +14,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/sym.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/sym.c,v 1.6 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" diff --git a/usr.bin/lex/tblcmp.c b/usr.bin/lex/tblcmp.c index 8e92984ffbd..f206019a256 100644 --- a/usr.bin/lex/tblcmp.c +++ b/usr.bin/lex/tblcmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tblcmp.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ +/* $OpenBSD: tblcmp.c,v 1.6 2003/06/04 17:34:44 millert Exp $ */ /* tblcmp - table compression routines */ @@ -14,21 +14,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/tblcmp.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/tblcmp.c,v 1.6 2003/06/04 17:34:44 millert Exp $ */ #include "flexdef.h" diff --git a/usr.bin/lex/yylex.c b/usr.bin/lex/yylex.c index d0c5cc30394..dd32bf438c2 100644 --- a/usr.bin/lex/yylex.c +++ b/usr.bin/lex/yylex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: yylex.c,v 1.4 2001/06/17 07:30:42 deraadt Exp $ */ +/* $OpenBSD: yylex.c,v 1.5 2003/06/04 17:34:44 millert Exp $ */ /* yylex - scanner front-end for flex */ @@ -14,21 +14,26 @@ * Department of Energy and the University of California. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source distributions - * retain this entire copyright notice and comment, and (2) distributions - * including binaries display the following acknowledgement: ``This product - * includes software developed by the University of California, Berkeley - * and its contributors'' in the documentation or other materials provided - * with the distribution and in all advertising materials mentioning - * features or use of this software. Neither the name of the University nor - * the names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/yylex.c,v 1.4 2001/06/17 07:30:42 deraadt Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/yylex.c,v 1.5 2003/06/04 17:34:44 millert Exp $ */ #include <ctype.h> #include "flexdef.h" |