]> git.saurik.com Git - apple/objc4.git/blob - test/load-noobjc2.m
e8cf37de8ee0435d86e2ce8218ca62aa727d9fb3
[apple/objc4.git] / test / load-noobjc2.m
1 #include "test.h"
2 #if __OBJC2__
3
4 extern semaphore_t go;
5
6 OBJC_ROOT_CLASS
7 @interface noobjc @end
8 @implementation noobjc
9 +(void)load
10 {
11 semaphore_signal(go);
12 while (1) sleep(1);
13 }
14 @end
15
16 #endif