blob: 5809d7ea542bf1a9070e19f62a4f0a50ae3f587b [file] [log] [blame]
#include <semaphore.h>
int sem_wait(sem_t* sem) {
return sem_timedwait(sem, 0);
}