Sign in
cobalt
/
cobalt
/
da45c04cd0b2a42259750905712e02601644c062
/
.
/
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
);
}