diff options
author | drh <drh@noemail.net> | 2001-09-16 00:13:26 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2001-09-16 00:13:26 +0000 |
commit | b19a2bc6036e680d4e7d995049be5dcba96cae7f (patch) | |
tree | fb42fcfe8bcb49e0cce93f61d6fd888698798f93 /tool/lemon.c | |
parent | 872ff86f2c0ee7b171c46609f49af16a0cc31b9c (diff) | |
download | sqlite-b19a2bc6036e680d4e7d995049be5dcba96cae7f.tar.gz sqlite-b19a2bc6036e680d4e7d995049be5dcba96cae7f.zip |
Disclaimed copyright. Preparing for release 2.0. (CVS 250)
FossilOrigin-Name: 4e926efe2b59adfec4086eb1d2ba830238facb4c
Diffstat (limited to 'tool/lemon.c')
-rw-r--r-- | tool/lemon.c | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/tool/lemon.c b/tool/lemon.c index 41426caa9..c3b15b7e6 100644 --- a/tool/lemon.c +++ b/tool/lemon.c @@ -1,29 +1,10 @@ /* -** Copyright (c) 1991, 1994, 1997, 1998 D. Richard Hipp -** ** This file contains all sources (including headers) to the LEMON ** LALR(1) parser generator. The sources have been combined into a ** single file to make it easy to include LEMON in the source tree ** and Makefile of another program. ** -** This program is free software; you can redistribute it and/or -** modify it 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 library; if not, write to the -** Free Software Foundation, Inc., 59 Temple Place - Suite 330, -** Boston, MA 02111-1307, USA. -** -** Author contact information: -** drh@acm.org -** http://www.hwaci.com/drh/ +** The author of this program disclaims copyright. */ #include <stdio.h> #include <varargs.h> @@ -1198,10 +1179,7 @@ char **argv; OptInit(argv,options,stderr); if( version ){ - printf("Lemon version 1.0\n" - "Copyright 1991-1997 by D. Richard Hipp\n" - "Freely distributable under the GNU Public License.\n" - ); + printf("Lemon version 1.0\n"); exit(0); } if( OptNArgs()!=1 ){ |