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