From: Rich Felker Date: Fri, 22 May 2020 21:25:38 +0000 (-0400) Subject: cut down size of some libc struct members X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=f12888e9eb9eed60cc266b899dcafecb4752964a;p=musl cut down size of some libc struct members these are all flags that can be single-byte values. --- diff --git a/src/internal/libc.h b/src/internal/libc.h index c0614852..d47f58e0 100644 --- a/src/internal/libc.h +++ b/src/internal/libc.h @@ -18,9 +18,9 @@ struct tls_module { }; struct __libc { - int can_do_threads; - int threaded; - int secure; + char can_do_threads; + char threaded; + char secure; int threads_minus_1; size_t *auxv; struct tls_module *tls_head;