]> AND Public Git Repository - simgrid.git/blobdiff - buildtools/Cmake/test_prog/prog_sem_timedwait.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
strenght the test of sem_init by testing that the function is not only compilable...
[simgrid.git] / buildtools / Cmake / test_prog / prog_sem_timedwait.c
index 58876f671fb0c5e7aa87cd4fc8c64cdce7ef5aa7..994d9ad8189cc1eed6bea9bbb63fe43f65c78cd5 100644 (file)
@@ -8,7 +8,7 @@
 
 int main()
 {
-       sem_t *s;
-       const struct timespec * t;
-       sem_timedwait(s, t);
+  sem_t *s;
+  const struct timespec *t;
+  sem_timedwait(s, t);
 }