This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Regarding generation of Header file


--- Gupta Sheetal GUR <Gupta.Sheetal@avl.com> wrote:
> hi there,
> I had mailed to 'cygwin-info@sourceware.cygnus.com' but not got any response
> 
>  i am sorry to disturb you.But its a urgent requirement .
> 
> THANKS in advance.
> 
> Kindly suggest me to come out of the following problem.
> I am using flex and byacc tool on winnt4.0
> When i generate the y.tab.c and y.tab.h files using byacc -d test.y
> test.y
> 
> %{
> #include <stdio.h>
> %}
> 
> %union  {
> 	int a;
> 	double x;
> }
> 
> %token <x> NAME
> %token <a> NUMBER
> 
> %%
> statement: NAME '=' expression
> 	|expression
> 	;
> expression:NUMBER '+' NUMBER  
> 	|NUMBER '-' NUMBER
> 	;
> %%
> 
> 
> 
> PROBLEM
> the header file contain the union part two times
> or one complete and other cut one  why???
> 
> y.tab.h
> #define NAME 257
> #define NUMBER 258
> typedef union  {
> 	int a;
> 	double x;
> }nt a;
> 	double x;
> } YYSTYPE;
>  YYSTYPE;
> extern YYSTYPE yylval;
> 
> THANKS
> 
>  Sheetal Gupta   
>  Software Engineer
>  AVL India Software Pvt Ltd.
> 376-377 Udyog Vihar, Phase IV,
> Gurgaon -122015 (Haryana (INDIA)
> 
> > Tel 91-0124-341-302/ 769,340-387/858/389/386
> E-mail:  sheetal.gupta@avl.com
>                sheetal_g@hotmail.com
> 	       sheetalgupta@usa.net 

I don't have a clue.  I've forwarded you message to the list.  Can anyone help
Seetal?


=====
Earnie Boyd <mailto:earnie_boyd@yahoo.com>

Newbies, please visit
<http://www.freeyellow.com/members5/gw32/index.html>

(If you respond to the list, then please don't cc me)
__________________________________________________
Do You Yahoo!?
Bid and sell for free at http://auctions.yahoo.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]