Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make the gras.h with cmake.
[simgrid.git] / buildtools / CPACK / tmp / prog_sem_timedwait.c
index 88d2e7a..a4349e0 100644 (file)
@@ -1,4 +1,8 @@
 #include <semaphore.h>
-sem_t *s;
-const struct timespec * t;
-sem_timedwait(s, t);
+
+int main()
+{
+       sem_t *s;
+       const struct timespec * t;
+       sem_timedwait(s, t);
+}