better a_sc inline asm constraint on aarch64 and arm
[musl] / src / thread / tss_delete.c
1 #include <threads.h>
2
3 int __pthread_key_delete(tss_t k);
4
5 void tss_delete(tss_t key)
6 {
7         __pthread_key_delete(key);
8 }