aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/wasi/thread-stub/pthread_cond_broadcast.c
blob: ce318099659439f09af3e09b84e34d2c370ebb85 (plain)
1
2
3
4
5
6
#include "pthread_impl.h"

int pthread_cond_broadcast(pthread_cond_t *c)
{
	return 0;
}