musl - an implementation of the standard library for Linux-based systems
blob: 6f51b07eb9e8f56f28ca68ee78378bc991939e9b (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <threads.h>
#include <pthread.h>
void tss_delete(tss_t key)
{
__pthread_key_delete(key);
}
|