dyld-733.6.tar.gz
[apple/dyld.git] / unit-tests / test-cases / image-state-dependents-initialized / foo.c
1
2
3 int foo_value = 1;
4
5 void __attribute__((constructor)) setup_foo()
6 {
7 foo_value = 2;
8 }
9
10
11