JustPaste.it

#include "stdio.h"

__thread int x = 10;
float y = 20;
int z;

void foo();

int main() {
printf("aa");

while (++y) {
--z;
foo();
}
return 0;
}