aboutsummaryrefslogtreecommitdiff
path: root/src/thread/tss_delete.c
blob: c8550b2e38110409636d047e1230dba4738d860d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <threads.h>
#include <pthread.h>

void tss_delete(tss_t key)
{
	__pthread_key_delete(key);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif