snix/third_party/bazel/rules_haskell/tests/indirect-link/cbits/impl.c

9 lines
117 B
C

static int thing;
int real_get_thing(void) {
return thing;
}
void real_set_thing(int value) {
thing = value;
}