mirror of
https://github.com/darlinghq/darling-objc4.git
synced 2025-03-01 10:48:37 +00:00
14 lines
178 B
Objective-C
14 lines
178 B
Objective-C
#include "test.h"
|
|
|
|
extern semaphore_t go;
|
|
|
|
OBJC_ROOT_CLASS
|
|
@interface noobjc @end
|
|
@implementation noobjc
|
|
+(void)load
|
|
{
|
|
semaphore_signal(go);
|
|
while (1) sleep(1);
|
|
}
|
|
@end
|