summaryrefslogtreecommitdiff
path: root/toc.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-01-19 14:44:11 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-01-19 14:44:11 -0500
commit304a43226ce9f44dc98d87d2b9ca0316258d6035 (patch)
treee2f083acc40e00019f822725e03372d89e98c741 /toc.c
parent13ff2041474f75647b34c5bec58e3289e56be8df (diff)
#foreign is kinda working now!
Diffstat (limited to 'toc.c')
-rw-r--r--toc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/toc.c b/toc.c
index 155e04f..0627a41 100644
--- a/toc.c
+++ b/toc.c
@@ -46,6 +46,10 @@ static void print_token(Token *t);
/* misc */
#define STRINGIFY2(x) #x
#define STRINGIFY(x) STRINGIFY2(x)
+#define join3(a,b) a##b
+#define join2(a,b) join3(a,b)
+#define join(a,b) join2(a,b)
+#define eval(x) x
static void fprint_char_literal(FILE *f, char c) {
if (isprint(c))