Blame src/arch/nt64/crt_pe.c

716654
/**************************************************************************/
716654
/*  mmglue: midipix architecture- and target-specific bits for musl libc  */
716654
/*  Copyright (C) 2013--2023  SysDeer Technologies, LLC                   */
716654
/*  Released under the Standard MIT License; see COPYING.MMGLUE.          */
716654
/**************************************************************************/
716654
860627
#include "pthread_impl.h"
860627
#include <threads.h>
860627
860627
void * __pthread_getspecific_impl(pthread_key_t k)
860627
{
860627
	return (__pthread_self())->tsd[k];
860627
}