about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/indirect-link/cbits/impl.c
blob: 666ce43962a388e5453363ae4d6f261c0e77b5a4 (plain) (blame)
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;
}