/[bison]/bison/src/scan-skel.l
ViewVC logotype

Diff of /bison/src/scan-skel.l

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by ra, Sun Dec 30 14:50:15 2001 UTC revision 1.2 by akim, Sun Dec 30 21:05:12 2001 UTC
# Line 1  Line 1 
1  %{                                                               /* -*- C -*- */
2    /* Scan Bison Skeletons.
3       Copyright (C) 2001  Free Software Foundation, Inc.
4    
5       This file is part of Bison, the GNU Compiler Compiler.
6    
7       Bison is free software; you can redistribute it and/or modify it
8       under the terms of the GNU General Public License as published by
9       the Free Software Foundation; either version 2, or (at your option)
10       any later version.
11    
12       Bison is distributed in the hope that it will be useful, but
13       WITHOUT ANY WARRANTY; without even the implied warranty of
14       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15       General Public License for more details.
16    
17       You should have received a copy of the GNU General Public License
18       along with Bison; see the file COPYING.  If not, write to the Free
19       Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20       02111-1307, USA.  */
21    
22  #include <stdlib.h>  %{
 #include <string.h>  
23    
24    #include "system.h"
25    #include "skeleton.h"
26  #include "parse-skel.h"  #include "parse-skel.h"
27    
28  %}  %}
29    
30  %option nounput  %option nounput
31  %option noyywrap  %option noyywrap
32  %option yylineno  /* If we enable
33    
34       %option yylineno
35    
36       Then we have warning: `yy_flex_realloc' defined but not used.
37       Seems like a Flex bug to me: Why the heck yylineno would trigger
38       the REJECT exception???  */
39    
40  %%  %%
41    

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26