Blame src/arch/nt32/crt_pe.c

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