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

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

/*
STDC(201112)
*/