blob: f47d0a3c0a1c9e38df0ea18daf1e13a3b047ab14 [file] [log] [blame]
#include "threads_impl.h"
int pthread_cond_wait(pthread_cond_t* restrict c, pthread_mutex_t* restrict m) {
return pthread_cond_timedwait(c, m, 0);
}