diff options
author | brolley <brolley@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-21 08:54:04 +0000 |
---|---|---|
committer | brolley <brolley@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-21 08:54:04 +0000 |
commit | a654e028c0847b75bf58ff0bd0798f6a5551bb2e (patch) | |
tree | 90fed89e61e9fd2bf61cf04959aef270cf529fdb /gcc/c-lex.h | |
parent | 2960b9507d93a62a4617b080eb91adfadd5386d9 (diff) | |
download | gcc-a654e028c0847b75bf58ff0bd0798f6a5551bb2e.tar.gz |
Thu May 21 11:51:15 1998 Dave Brolley <brolley@cygnus.com>
* configure.in (extra_c_objs): add prefix.o.
(extra_cxx_objs): extra objects for C++ with cpplib.
* configure: Regenerate.
* c-tree.h: (get_directive_line): Different prototype for cpplib.
(GET_DIRECTIVE_LINE): Macro wrapper for get_directive_line.
* c-lex.h: (get_directive_line): Not needed here for cpplib.
* c-lex.c: (yy_cur,yy_lim,yy_get_token): Move to c-common.c.
(GET_DIRECTIVE_LINE): Move to c-common.c and rename to get_directive_line.
* c-common.c (parse_in,parse_options,cpp_token): Declare for cpplib.
(yy_cur,yy_lim,yy_get_token,get_directive,line): Moved here from c-lex.c
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19926 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lex.h')
-rw-r--r-- | gcc/c-lex.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/c-lex.h b/gcc/c-lex.h index d0df996b263..bd0b9d4b91f 100644 --- a/gcc/c-lex.h +++ b/gcc/c-lex.h @@ -81,8 +81,6 @@ extern int check_newline PROTO((void)); extern int yylex PROTO((void)); extern void yyerror PROTO((char *)); -extern char *get_directive_line PROTO((FILE *)); - extern void forget_protocol_qualifiers PROTO((void)); extern void remember_protocol_qualifiers PROTO((void)); extern tree is_class_name PROTO((tree)); |