diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1991-12-24 02:15:13 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1991-12-24 02:15:13 +0000 |
commit | b29b718d5f3424f69fad6d4eaf166176dcc72eb0 (patch) | |
tree | 4748bd45284057cdc75c1160cdf6b827582e327c /gcc/c-lex.h | |
parent | 47dda5382715ab0ca0f931c96d8263729473f318 (diff) | |
download | gcc-b29b718d5f3424f69fad6d4eaf166176dcc72eb0.tar.gz |
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lex.h')
-rw-r--r-- | gcc/c-lex.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/c-lex.h b/gcc/c-lex.h index 16cfa0348d9..bee288923e9 100644 --- a/gcc/c-lex.h +++ b/gcc/c-lex.h @@ -54,3 +54,15 @@ enum rid for the reserved type names and storage classes. It is indexed by a RID_... value. */ extern tree ridpointers[(int) RID_MAX]; + +/* the declaration found for the last IDENTIFIER token read in. + yylex must look this up to detect typedefs, which get token type TYPENAME, + so it is left around in case the identifier is not a typedef but is + used in a context which makes it a reference to a variable. */ +extern tree lastiddecl; + +extern char *token_buffer; /* Pointer to token buffer. */ + +extern tree make_pointer_declarator (); +extern void reinit_parse_for_function (); +extern int yylex (); |