dyld-733.8.tar.gz
[apple/dyld.git] / testing / test-cases / dlopen-flat.dtest / foo.c
1
2
3 extern int gInitialisersCalled;
4
5 __attribute__((constructor))
6 static void onLoad() {
7 ++gInitialisersCalled;
8 }
9
10
11 int foo() {
12 return 0;
13 }