Subversion Repositories tendra.SVN

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 7
Line 154... Line 154...
154
    COMPOUND TYPE ALIASES
154
    COMPOUND TYPE ALIASES
155
 
155
 
156
    These are the aliases for the compound types used in the parser.
156
    These are the aliases for the compound types used in the parser.
157
*/
157
*/
158
 
158
 
159
typedef LIST ( IDENTIFIER ) SID_LIST_ID ;
159
typedef LIST(IDENTIFIER) SID_LIST_ID;
160
 
160
 
161
 
161
 
162
/*
162
/*
163
     DECLARE FUNCTIONS
163
     DECLARE FUNCTIONS
164
 
164
 
165
     The function declarations are included at this point so that the
165
     The function declarations are included at this point so that the
166
     type definitions are in scope.
166
     type definitions are in scope.
167
*/
167
*/
168
 
168
 
169
#include "psyntax.h"
169
#include "psyntax.h"
170
extern void parse_tok_type PROTO_S ( ( TYPE * ) ) ;
170
extern void parse_tok_type(TYPE *);
171
extern void parse_mem_type PROTO_S ( ( TYPE * ) ) ;
171
extern void parse_mem_type(TYPE *);
172
extern void parse_operator PROTO_S ( ( IDENTIFIER * ) ) ;
172
extern void parse_operator(IDENTIFIER *);
173
 
173
 
174
 
174
 
175
/*
175
/*
176
    COMPILATION MODE
176
    COMPILATION MODE
177
 
177