aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/cc/scratch.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-29 14:40:50 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-29 14:40:50 -0700
commit680d60678b273f1ff20b013b24954773f76b4e1d (patch)
treee164dd28a8534fe27313d604435333e897a45d39 /sys/cmd/cc/scratch.c
parent3eff49e57b9d122a1da1103988731c9ace69c304 (diff)
checkin: before fix of stale type pointer bug
Diffstat (limited to 'sys/cmd/cc/scratch.c')
-rw-r--r--sys/cmd/cc/scratch.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/cmd/cc/scratch.c b/sys/cmd/cc/scratch.c
new file mode 100644
index 0000000..b37d9a5
--- /dev/null
+++ b/sys/cmd/cc/scratch.c
@@ -0,0 +1,7 @@
+#define XXX(a, b, c) a ## b ## c
+
+int
+main()
+{
+ XXX(d, e, f);
+}