summaryrefslogtreecommitdiff
path: root/src/threads/cnd_destroy.c
blob: 7fda89bfcbf2ef0cecece38545a19ff79bb8c53d (plain)
1
2
3
4
5
6
7
#include <threads.h>
#include <pthread.h>

void cnd_destroy(cnd_t *cond)
{
	pthread_cond_destroy(cond);
}