mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-10 00:32:27 +03: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
@ -18,9 +18,9 @@ struct tls_module {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct __libc {
|
struct __libc {
|
||||||
int can_do_threads;
|
char can_do_threads;
|
||||||
int threaded;
|
char threaded;
|
||||||
int secure;
|
char secure;
|
||||||
int threads_minus_1;
|
int threads_minus_1;
|
||||||
size_t *auxv;
|
size_t *auxv;
|
||||||
struct tls_module *tls_head;
|
struct tls_module *tls_head;
|
||||||
|
Loading…
Reference in New Issue
Block a user