aboutsummaryrefslogtreecommitdiffhomepage
path: root/test.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2023-05-28 12:45:58 +0200
committerlemon <lsof@mailbox.org>2023-05-28 12:45:58 +0200
commitd0784193a8589982290373e95e2f228439e59160 (patch)
tree2ba993b615540001163055e658dacec3b7bada1d /test.c
parent784cda65436627e8b44ea02e4266a1b91ecb3ca8 (diff)
bugfix
Diffstat (limited to 'test.c')
-rw-r--r--test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test.c b/test.c
index 9832d1d..cb81b9c 100644
--- a/test.c
+++ b/test.c
@@ -13,6 +13,8 @@ int add (int x, int y) {
return x + y + *glob;
}
+struct foo {struct foo *foo;};
+
int abs(int x){
return (x ^ x >> 31) - (x >> 31);
}