#include<threads.h>intcnd_wait(cnd_t*c,mtx_t*m){/* Calling cnd_timedwait with a null pointer is an extension. * It is convenient here to avoid duplication of the logic * for return values. */returncnd_timedwait(c,m,0);}#ifdef TESTintmain(void){return0;}#endif