aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-02-14 11:12:28 -0800
committerMichael Forney <mforney@mforney.org>2019-02-14 16:40:45 -0800
commitca6384fcf7fea13e095c278fec7f3e20c943ad62 (patch)
tree7fc7e19a160c39ebfaf528ba6913a1d33621088a
parentfc2681639fb9c989d75c8e3d5b07437070a8ecad (diff)
downloadcproc-ca6384fcf7fea13e095c278fec7f3e20c943ad62.tar.xz
Remove some leftover commented out stuff
-rw-r--r--token.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/token.h b/token.h
index 3b0fbb7..ed4483c 100644
--- a/token.h
+++ b/token.h
@@ -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 *);