xref: /aosp_15_r20/external/musl/src/thread/pthread_cond_wait.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "pthread_impl.h"
2 
pthread_cond_wait(pthread_cond_t * restrict c,pthread_mutex_t * restrict m)3 int pthread_cond_wait(pthread_cond_t *restrict c, pthread_mutex_t *restrict m)
4 {
5 	return pthread_cond_timedwait(c, m, 0);
6 }
7