1570af302Sopenharmony_ci#include <threads.h>
2570af302Sopenharmony_ci#include <pthread.h>
3570af302Sopenharmony_ci
4570af302Sopenharmony_ciint cnd_broadcast(cnd_t *c)
5570af302Sopenharmony_ci{
6570af302Sopenharmony_ci	/* This internal function never fails, and always returns zero,
7570af302Sopenharmony_ci	 * which matches the value thrd_success is defined with. */
8570af302Sopenharmony_ci	return __private_cond_signal((pthread_cond_t *)c, -1);
9570af302Sopenharmony_ci}
10