From 91c6a187b89cb1ea9afc6a963106fbccca218dde Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 8 Sep 2018 18:46:06 -0400 Subject: move declarations of tls setup/access functions to pthread_impl.h it's already included in all places where these are needed, and aside from __tls_get_addr, they're all implementation internals. --- src/thread/__tls_get_addr.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/thread/__tls_get_addr.c') diff --git a/src/thread/__tls_get_addr.c b/src/thread/__tls_get_addr.c index 3bc60571..013817b4 100644 --- a/src/thread/__tls_get_addr.c +++ b/src/thread/__tls_get_addr.c @@ -2,8 +2,6 @@ #include "pthread_impl.h" #include "libc.h" -hidden void *__tls_get_new(tls_mod_off_t *); - void *__tls_get_addr(tls_mod_off_t *v) { pthread_t self = __pthread_self(); -- cgit v1.2.1