1 2 3 4 5 6 7 8 9
static int thing; int real_get_thing(void) { return thing; } void real_set_thing(int value) { thing = value; }