mirror of
https://github.com/darlinghq/darling-objc4.git
synced 2024-11-26 21:50:26 +00:00
10 lines
109 B
Objective-C
10 lines
109 B
Objective-C
#include "test.h"
|
|
|
|
extern int state;
|
|
|
|
__attribute__((constructor))
|
|
static void ctor(void)
|
|
{
|
|
state = 1;
|
|
}
|