1 /* Define constants for communication with the CHILL parser.
2 Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
25 RID_UNUSED
, /* keep this one first, please */
71 RID_MAX
/* Last element */
74 #define NORID RID_UNUSED
76 #define RID_FIRST_MODIFIER RID_UNSIGNED
78 /* The elements of `ridpointers' are identifier nodes
79 for the reserved type names and storage classes.
80 It is indexed by a RID_... value. */
81 extern tree ridpointers
[(int) RID_MAX
];
83 extern char *token_buffer
; /* Pointer to token buffer. */
85 extern tree make_pointer_declarator
PROTO((tree
, tree
));
86 extern void reinit_parse_for_function
PROTO((void));
87 extern int yylex
PROTO((void));
89 extern tree default_grant_file
;
90 extern tree current_grant_file
;
92 extern tree current_seize_file
;
94 extern int chill_at_module_level
;
95 extern tree chill_initializer_name
;
97 extern void prepare_paren_colon
PROTO((void));