aboutsummaryrefslogtreecommitdiff
path: root/testbed/custom_const.c
diff options
context:
space:
mode:
Diffstat (limited to 'testbed/custom_const.c')
-rw-r--r--testbed/custom_const.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/testbed/custom_const.c b/testbed/custom_const.c
deleted file mode 100644
index d0126f3..0000000
--- a/testbed/custom_const.c
+++ /dev/null
@@ -1,9 +0,0 @@
-int sum;
-void f() {
- sum = 3;
-}
-int main() {
- sum = 1;
- f();
- printf("%d\n", sum);
-}