add support for non-option arguments extension to getopt
[musl] / src / thread / cnd_broadcast.c
1 #include <threads.h>
2
3 int __private_cond_signal(cnd_t *, int);
4
5 int cnd_broadcast(cnd_t *c)
6 {
7         /* This internal function never fails, and always returns zero,
8          * which matches the value thrd_success is defined with. */
9         return __private_cond_signal(c, -1);
10 }