Add support for text macros with arguments.
[iverilog.git] / ivlpp / parse.y
blobff722eef75d3a1c333e01b3f2d05482f10a8471a
2 %{
3 /*
4 * Copyright (c) 1999 Stephen Williams (steve@icarus.com)
6 * This source code is free software; you can redistribute it
7 * and/or modify it in source code form under the terms of the GNU
8 * General Public License as published by the Free Software
9 * Foundation; either version 2 of the License, or (at your option)
10 * any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
21 #ifdef HAVE_CVS_IDENT
22 #ident "$Id: parse.y,v 1.4 2003/08/26 16:26:02 steve Exp $"
23 #endif
25 # include <stdio.h>
27 static void yyerror(const char*msg);
32 file : ;
37 void yyerror(const char*msg)
39 fprintf(stderr, "ivlpp error: %s\n", msg);