diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-02-06 07:53:50 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-02-06 07:53:50 +0000 |
commit | 08c74ec4b319bc6e5092b9a0385270b87d06d7dd (patch) | |
tree | 6aaa6f9538630d2ea8364246fa5bcbbdd6bf3d3f /gcc/cpplib.h | |
parent | 0b60628c82420c707b03666a0659ef0e1a6fc8ff (diff) | |
download | ppe42-gcc-08c74ec4b319bc6e5092b9a0385270b87d06d7dd.tar.gz ppe42-gcc-08c74ec4b319bc6e5092b9a0385270b87d06d7dd.zip |
* cppalloc.c: Update copyright.
* cpplib.c: Merge all the static function prototypes into one
block.
* cpplib.h: Remove #if 0 block.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31818 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 1207f84511b..0ddc3198d21 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -53,20 +53,7 @@ enum cpp_token { CPP_COMMA, /* "," */ CPP_SEMICOLON,/* ";" */ CPP_3DOTS, /* "..." */ -#if 0 - CPP_ANDAND, /* "&&" */ - CPP_OROR, /* "||" */ - CPP_LSH, /* "<<" */ - CPP_RSH, /* ">>" */ - CPP_EQL, /* "==" */ - CPP_NEQ, /* "!=" */ - CPP_LEQ, /* "<=" */ - CPP_GEQ, /* ">=" */ - CPP_PLPL, /* "++" */ - CPP_MINMIN, /* "--" */ -#endif - /* POP_TOKEN is returned when we've popped a cpp_buffer. */ - CPP_POP + CPP_POP /* We're about to pop the buffer stack. */ }; typedef enum cpp_token (*parse_underflow_t) PARAMS((cpp_reader *)); |