getopt: fix null pointer arithmetic ub
[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 }