mirror of
https://github.com/fluencelabs/musl
synced 2025-06-27 21:52:02 +00:00
7 lines
133 B
C
7 lines
133 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_cond_wait(pthread_cond_t *c, pthread_mutex_t *m)
|
|
{
|
|
return pthread_cond_timedwait(c, m, 0);
|
|
}
|