aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.h
diff options
context:
space:
mode:
authorZack Weinberg <zack@wolery.cumb.org>2000-02-06 07:53:50 +0000
committerZack Weinberg <zack@gcc.gnu.org>2000-02-06 07:53:50 +0000
commit1316f1f7fcb21e1f5c807f2a3a84f177674e0e5b (patch)
tree6aaa6f9538630d2ea8364246fa5bcbbdd6bf3d3f /gcc/cpplib.h
parent40ea76de513e2bd7388dfaf144c5c9f68f53afad (diff)
downloadgcc-1316f1f7fcb21e1f5c807f2a3a84f177674e0e5b.zip
gcc-1316f1f7fcb21e1f5c807f2a3a84f177674e0e5b.tar.gz
gcc-1316f1f7fcb21e1f5c807f2a3a84f177674e0e5b.tar.bz2
cppalloc.c: Update copyright.
* cppalloc.c: Update copyright. * cpplib.c: Merge all the static function prototypes into one block. * cpplib.h: Remove #if 0 block. From-SVN: r31818
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r--gcc/cpplib.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h
index 1207f84..0ddc319 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 *));