sem_wait.c 84 B

123456
  1. #include <semaphore.h>
  2. int sem_wait(sem_t *sem)
  3. {
  4. return sem_timedwait(sem, 0);
  5. }