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