summaryrefslogtreecommitdiff
path: root/src/thread/pthread_attr_init.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-18 19:43:52 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-18 19:48:44 -0400
commitc7ed3e909a69d34a7821f7db644c2fa590a1a690 (patch)
tree862a190688c57ff3a2e5088977a5c49c174b303c /src/thread/pthread_attr_init.c
parent11ce1b133d594b6a454d3e8d5941e7a6a432c42b (diff)
downloadmusl-c7ed3e909a69d34a7821f7db644c2fa590a1a690.tar.gz
remove redundant declarations of __default_stacksize, __default_guardsize
these are now declared in pthread_impl.h.
Diffstat (limited to 'src/thread/pthread_attr_init.c')
-rw-r--r--src/thread/pthread_attr_init.c3
1 files changed, 0 insertions, 3 deletions
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};