diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-14 11:12:28 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-14 16:40:45 -0800 |
commit | ca6384fcf7fea13e095c278fec7f3e20c943ad62 (patch) | |
tree | 7fc7e19a160c39ebfaf528ba6913a1d33621088a | |
parent | fc2681639fb9c989d75c8e3d5b07437070a8ecad (diff) | |
download | cproc-ca6384fcf7fea13e095c278fec7f3e20c943ad62.tar.xz |
Remove some leftover commented out stuff
-rw-r--r-- | token.h | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -117,22 +117,6 @@ struct token { char *lit; }; -#if 0 -enum tokenclass { - /* declaration */ - STORCLASS = 1<<1, - TYPEQUAL = 1<<2, - TYPESPEC = 1<<3, - FUNCSPEC = 1<<4, - ALIGNSPEC = 1<<5, - STATICASSERT = 1<<6, - DECLARATION = (1<<7) - 1, -}; -#endif - -//struct token *tokdup(struct token *); -//enum tokenclass tokclass(struct token *); - extern struct token tok; void tokprint(const struct token *); |