From 90ed3dd12462146ec48a64dc4499b1492c83d986 Mon Sep 17 00:00:00 2001 From: steve Date: Tue, 20 Mar 2001 02:48:40 +0000 Subject: [PATCH] Copyright notices. --- vvp/lexor.lex | 30 ++++++++++++++++++++++++++++++ vvp/parse.y | 30 ++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) diff --git a/vvp/lexor.lex b/vvp/lexor.lex index 310fefc45..0964c2137 100644 --- a/vvp/lexor.lex +++ b/vvp/lexor.lex @@ -1,5 +1,27 @@ %{ +/* + * Copyright (c) 2001 Stephen Williams (steve@icarus.com) + * + * This source code is free software; you can redistribute it + * and/or modify it in source code form under the terms of the GNU + * General Public License as published by the Free Software + * Foundation; either version 2 of the License, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + */ +#if !defined(WINNT) +#ident "$Id: lexor.lex,v 1.5 2001/03/20 02:48:40 steve Exp $" +#endif + # include "parse_misc.h" # include "compile.h" # include "parse.h" @@ -73,3 +95,11 @@ int yywrap() { return -1; } + + +/* + * $Log: lexor.lex,v $ + * Revision 1.5 2001/03/20 02:48:40 steve + * Copyright notices. + * + */ diff --git a/vvp/parse.y b/vvp/parse.y index 6e07a926b..45e1987f3 100644 --- a/vvp/parse.y +++ b/vvp/parse.y @@ -1,5 +1,27 @@ %{ +/* + * Copyright (c) 2001 Stephen Williams (steve@icarus.com) + * + * This source code is free software; you can redistribute it + * and/or modify it in source code form under the terms of the GNU + * General Public License as published by the Free Software + * Foundation; either version 2 of the License, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + */ +#if !defined(WINNT) +#ident "$Id: parse.y,v 1.8 2001/03/20 02:48:40 steve Exp $" +#endif + # include "parse_misc.h" # include "compile.h" # include @@ -219,3 +241,11 @@ int compile_design(const char*path) int rc = yyparse(); return rc; } + + +/* + * $Log: parse.y,v $ + * Revision 1.8 2001/03/20 02:48:40 steve + * Copyright notices. + * + */