summaryrefslogtreecommitdiffhomepage
path: root/src/arch/nt32/crt_pe.c
blob: d2f67c7ef1cd94649ffe4241a95fa722331864d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**************************************************************************/
/*  mmglue: midipix architecture- and target-specific bits for musl libc  */
/*  Copyright (C) 2013--2023  SysDeer Technologies, LLC                   */
/*  Released under GPLv2 and GPLv3; see COPYING.MMGLUE.                   */
/**************************************************************************/

#include "pthread_impl.h"
#include <threads.h>

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