summaryrefslogtreecommitdiff
path: root/cil/test/small1/init1.c
diff options
context:
space:
mode:
Diffstat (limited to 'cil/test/small1/init1.c')
-rw-r--r--cil/test/small1/init1.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/cil/test/small1/init1.c b/cil/test/small1/init1.c
deleted file mode 100644
index e6334df..0000000
--- a/cil/test/small1/init1.c
+++ /dev/null
@@ -1,17 +0,0 @@
-extern void exit(int);
-
-struct {
- struct {
- int *f1;
- int *f2;
- } s1;
- struct {
- int *f3;
- } s2;
-} memory[10] = { 1 };
-
-int main() {
- if(memory[0].s1.f1 != (int*)1)
- exit(1);
- exit(0);
-}