]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Tue, 24 Dec 1991 02:15:13 +0000 (02:15 +0000)
committerRichard Stallman <rms@gnu.org>
Tue, 24 Dec 1991 02:15:13 +0000 (02:15 +0000)
From-SVN: r132

gcc/c-lex.h

index 16cfa0348d941421a1a9e72767a5f4a0740256f7..bee288923e95d3b066880c5b3ed4bb9590267cd4 100644 (file)
@@ -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 ();