Subversion Repositories filter_foundry

Rev

Rev 2 | Rev 15 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 8
Line 31... Line 31...
31
int yyparse(void);
31
int yyparse(void);
32
int yylex(void); // hack. correct prototype is buried in lex output
32
int yylex(void); // hack. correct prototype is buried in lex output
33
//#endif
33
//#endif
34
 
34
 
35
#include "node.h"
35
#include "node.h"
36
#include "parser.h"
36
#include "y.tab.h"
37
 
37
 
38
void yyerror(char*);
38
void yyerror(char*);
39
 
39
 
40
#define DPARSE 
40
#define DPARSE 
41
 
41