aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/thread_local/thread_local.c
blob: 7a50db0ae74da8166d83aad8ace16a43e561c9b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

_Thread_local int toto;
_Thread_local int toto2 = 45;

int foobar(void) {
  return toto;
}

int main() {
  printf("%d %d\n", toto, toto2);
  return 0;
}