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