blob: 180800f5654aa91fdf27ac009613809ae926f63e [file] [log] [blame]
#include <threads.h>
#include "pthread_impl.h"
int cnd_signal(cnd_t* c) {
__private_cond_signal(c, 1);
return thrd_success;
}