diff options
| author | 2023-05-28 12:45:58 +0200 | |
|---|---|---|
| committer | 2023-05-28 12:45:58 +0200 | |
| commit | d0784193a8589982290373e95e2f228439e59160 (patch) | |
| tree | 2ba993b615540001163055e658dacec3b7bada1d /test.c | |
| parent | 784cda65436627e8b44ea02e4266a1b91ecb3ca8 (diff) | |
bugfix
Diffstat (limited to 'test.c')
| -rw-r--r-- | test.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); } |