Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove an old cruft from MS Visual
[simgrid.git] / tools / cmake / test_prog / prog_thread_storage.c
index 86d2940..e79536e 100644 (file)
@@ -9,7 +9,6 @@
 __thread int thread_specific_variable = 0;
 
 int main(void) {
-
   thread_specific_variable++;
   printf("%d\n", thread_specific_variable);
   return 0;