aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/cc/lex.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-30 19:29:42 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-30 19:29:42 -0700
commitfc158ab464fd58aec17aa590bc2022f539fefc5a (patch)
treec2690da2d4c900036d9cb4cfaf747e8c4297089c /sys/cmd/cc/lex.c
parent7c01031fda34b64fb2ca5e73838d860bf3f0d78d (diff)
bug: temporary removal of musl lib to isolate malloc bug
Diffstat (limited to 'sys/cmd/cc/lex.c')
-rw-r--r--sys/cmd/cc/lex.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/cmd/cc/lex.c b/sys/cmd/cc/lex.c
index cb65aa0..97e19e4 100644
--- a/sys/cmd/cc/lex.c
+++ b/sys/cmd/cc/lex.c
@@ -759,6 +759,7 @@ Dispatch:
}
io = makeio(lx, sym->name);
io->rdr.end += expandmacro(lx, sym, io->b);
+ printf("EXPANDED %s: %s\n", sym->name, io->rdr.beg);
*io->rdr.end++ = EOF;
pushio(lx, io);
goto GetByte;