fix arm __tlsdesc_dynamic when built as thumb code without __ARM_ARCH>=5
[musl] / src / thread / tss_delete.c
1 #include <threads.h>
2 #include <pthread.h>
3
4 void tss_delete(tss_t key)
5 {
6         __pthread_key_delete(key);
7 }