From 3982aeffa6d2f202caf57f874015b8fd3db04cba Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Tue, 18 Mar 2003 13:45:14 -0700 Subject: [PATCH] Declare 'alloc_token()' for use in the pre-processor (which creates some tokens on the fly: "defined xxxx", "A ## B", "#A" etc) --- token.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/token.h b/token.h index e2db3a01..20bd8697 100644 --- a/token.h +++ b/token.h @@ -17,6 +17,8 @@ struct stream { extern int input_stream_nr; extern struct stream *input_streams; +struct token * alloc_token(int stream, int line, int pos); + extern int ident_hit, ident_miss; struct ident { -- 2.11.4.GIT