#include<threads.h>#include<pthread.h>int__private_cond_signal(pthread_cond_t*,int);intcnd_signal(cnd_t*c){/* This internal function never fails, and always returns zero, * which matches the value thrd_success is defined with. */return__private_cond_signal((pthread_cond_t*)c,1);}