summaryrefslogtreecommitdiffhomepage
path: root/src/arch/nt32/crt_pe.c
blob: 0dc75a458686ef9e9981d334833d2677f4ef1cb0 (plain)
1
2
3
4
5
6
7
#include "pthread_impl.h"
#include <threads.h>

void * __pthread_getspecific_impl(pthread_key_t k)
{
	return (__pthread_self())->tsd[k];
}