summaryrefslogtreecommitdiffhomepage
path: root/src/ldso/nt32/tlsdesc.c
blob: eec1a77ea6d5e9ec4b8da4ce7af990e2b902e097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**************************************************************************/
/*  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 <stddef.h>

ptrdiff_t __tlsdesc_static(void)
{
	return 0;
}

ptrdiff_t  __tlsdesc_dynamic(void) __attribute__((alias("__tlsdesc_static")));