aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/pp.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-09-12 17:10:35 +0200
committerlemon <lsof@mailbox.org>2025-09-12 17:10:35 +0200
commit89710916cfa82f50be0092347744a5e06a3b5420 (patch)
tree02cff596fad2f6b4ea577ad35bc77d53dcb4a413 /test/pp.c
parentc8af181799015ea39b8868ef5d07b10ed255e799 (diff)
c: function-local static vars
Diffstat (limited to 'test/pp.c')
-rw-r--r--test/pp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/pp.c b/test/pp.c
index f850c08..1c1549f 100644
--- a/test/pp.c
+++ b/test/pp.c
@@ -5,7 +5,8 @@
int
main(void)
{
- printf("%s\n",STR ( ok /1 "\n"\n ;.&
- 05.5));
+ printf("%s %s\n",STR ( ok /1 "\n"n ;.&
+ 05.5), STR(ADD(1,2)));
hi(ADD(Foo, SQR(Bar+1)));
+ printf("%s %s\n", str(Foo), xstr(Foo));
}