From c7ed3e909a69d34a7821f7db644c2fa590a1a690 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 18 Sep 2018 19:43:52 -0400 Subject: remove redundant declarations of __default_stacksize, __default_guardsize these are now declared in pthread_impl.h. --- src/thread/pthread_attr_init.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/thread/pthread_attr_init.c') diff --git a/src/thread/pthread_attr_init.c b/src/thread/pthread_attr_init.c index 398990d1..463a8d20 100644 --- a/src/thread/pthread_attr_init.c +++ b/src/thread/pthread_attr_init.c @@ -1,8 +1,5 @@ #include "pthread_impl.h" -extern size_t __default_stacksize; -extern size_t __default_guardsize; - int pthread_attr_init(pthread_attr_t *a) { *a = (pthread_attr_t){0}; -- cgit 1.4.1