summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-02-07 16:33:27 -0500
committerpommicket <pommicket@gmail.com>2022-02-07 16:33:27 -0500
commit16bad1636d7e2ee6cc13c014f9628cec25423e3a (patch)
tree23536ce05b089444eee669f64b746d582713d588 /05/main.c
parente21c1c39a7fc0309c683f801b095eaa76b47000a (diff)
fix multi-line fmacro invocations
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/05/main.c b/05/main.c
index b2f9976..bae28af 100644
--- a/05/main.c
+++ b/05/main.c
@@ -1,2 +1,11 @@
+#define funciton( h, \
+ i, j ) h##ello * 2 * i##ello * j##ello
+int hello = 7;
int main() {
+ int x = funciton(
+ h,
+ h,
+ h
+ );
+ int y = funciton(h,h,h);
}