Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Missing dependency (fix parallel builds).
[simgrid.git] / buildtools / Cmake / test_prog / prog_sem_open.c
index e9f04456bd4267fbf358a10c7505b38632535f52..56a2c4b9169fe5e47c36ed0cc279fc4001564066 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2010-2014. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -16,9 +16,9 @@
 
 int main(void) {   
 #ifdef WIN32
-       int s;
+  int s;
 #else
-       sem_t * s;
+  sem_t * s;
 #endif
    s = sem_open("/0", O_CREAT, 0644, 10);
    if (s == SEM_FAILED){