aboutsummaryrefslogtreecommitdiff
path: root/src/thread/pthread_cond_wait.c
blob: 4e5917f6f44be7a1f4fbb634bae8cd2696ddc4e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "pthread_impl.h"

int pthread_cond_wait(pthread_cond_t *restrict c, pthread_mutex_t *restrict m)
{
	return pthread_cond_timedwait(c, m, 0);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif