Copyright notices.

This commit is contained in:
steve 2001-03-20 02:48:40 +00:00
parent 8118203766
commit 90ed3dd124
2 changed files with 60 additions and 0 deletions

View File

@ -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.
*
*/

View File

@ -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 <stdio.h>
@ -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.
*
*/