blob: ceb358106efebfacf54c5ed5ab527ea58ced5cd7 [file] [log] [blame]
#include <threads.h>
#include "threads_impl.h"
static void* __pthread_getspecific(pthread_key_t k) {
struct pthread* self = __pthread_self();
return self->tsd[k];
}
weak_alias(__pthread_getspecific, pthread_getspecific);
weak_alias(__pthread_getspecific, tss_get);