The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
223 B
13 lines
223 B
3 years ago
|
#include <stdio.h>
|
||
|
static int g_checked = 0;
|
||
|
|
||
|
static void __attribute__((constructor(101), used)) init_checked(void) {
|
||
|
g_checked=100;
|
||
|
fprintf(stdout, "inited\n");
|
||
|
}
|
||
|
|
||
|
|
||
|
int get_checked(void) {
|
||
|
return g_checked;
|
||
|
}
|