blob: 08f49c58a3511008cfe07b8cc7448976c4562cca [file] [log] [blame]
#include "pthread_impl.h"
#include <threads.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);