9 lines
117 B
C
9 lines
117 B
C
static int thing;
|
|
|
|
int real_get_thing(void) {
|
|
return thing;
|
|
}
|
|
|
|
void real_set_thing(int value) {
|
|
thing = value;
|
|
}
|