cut out a syscall on thread creation in the case where guard size is 0
[musl] / src / thread / pthread_key_delete.c
1 #include "pthread_impl.h"
2
3 int pthread_key_delete(pthread_key_t k)
4 {
5         if (libc.tsd_keys) libc.tsd_keys[k] = 0;
6         return 0;
7 }