mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
cut down size of some libc struct members
these are all flags that can be single-byte values.
This commit is contained in:
parent
e01b5939b3
commit
f12888e9eb
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue