]> git.saurik.com Git - apple/objc4.git/blob - test/load-noobjc3.m
objc4-680.tar.gz
[apple/objc4.git] / test / load-noobjc3.m
1 #include "test.h"
2
3 #if __OBJC2__
4
5 extern int state;
6
7 __attribute__((constructor))
8 static void ctor(void)
9 {
10 state = 1;
11 }
12
13 #endif