summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-01-09 12:31:35 -0500
committerpommicket <pommicket@gmail.com>2022-01-09 12:31:35 -0500
commitf08cdc8e22e06bbf55ce6fa1f36654589e620a81 (patch)
tree70ce2c30b7e0d2dfcb15100d78219e101371cb51 /05/main.c
parent807a6aacf9d05f194944f32386b2e8cd71c1dd5a (diff)
start fmacro replacement
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/05/main.c b/05/main.c
index 3186a09..92066af 100644
--- a/05/main.c
+++ b/05/main.c
@@ -1,10 +1,5 @@
-#define B A C A B A
-#define A helo what
-#define C how is it going
-
-#define D E
-#define E D
-B !
-
-D
-E
+#define TEST(x) hello
+#define TEST heloo 2
+TEST(55)
+main(void) {
+}