summaryrefslogtreecommitdiffhomepage
path: root/src/ldso/nt64/tlsdesc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ldso/nt64/tlsdesc.c')
-rw-r--r--src/ldso/nt64/tlsdesc.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ldso/nt64/tlsdesc.c b/src/ldso/nt64/tlsdesc.c
new file mode 100644
index 0000000..7015e30
--- /dev/null
+++ b/src/ldso/nt64/tlsdesc.c
@@ -0,0 +1,8 @@
+#include <stddef.h>
+
+ptrdiff_t __tlsdesc_static(void)
+{
+ return 0;
+}
+
+ptrdiff_t __tlsdesc_dynamic(void) __attribute__((alias("__tlsdesc_static")));