Sign in
cobalt
/
cobalt.git
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
thread
/
sem_wait.c
blob: 264194f97cdedd6214c078edfb083c160aceb256 [
file
]
#include
<semaphore.h>
int
sem_wait
(
sem_t
*
sem
)
{
return
sem_timedwait
(
sem
,
0
);
}