]> git.proxmox.com Git - wasi-libc.git/commit
Disable unused fields in FILE and __libc.
authorDan Gohman <sunfish@mozilla.com>
Thu, 25 Apr 2019 22:30:07 +0000 (15:30 -0700)
committerDan Gohman <sunfish@mozilla.com>
Mon, 29 Apr 2019 14:33:59 +0000 (07:33 -0700)
commit9bb4cc5c411af8453cbef69c137a4c2337714d89
tree2855a525ba6be8bd7482ec0056a3736414ef23e3
parent2201343c17b7149a75f543f523bea0c3243c6091
Disable unused fields in FILE and __libc.

Some of these fields are only needed for threads, some are not needed at
all. Removing them helps prevent code from accidentally using them, such
as when we merge in new musl versions.
17 files changed:
libc-top-half/musl/src/internal/libc.h
libc-top-half/musl/src/internal/stdio_impl.h
libc-top-half/musl/src/stdio/__fdopen.c
libc-top-half/musl/src/stdio/__fopen_rb_ca.c
libc-top-half/musl/src/stdio/fmemopen.c
libc-top-half/musl/src/stdio/open_memstream.c
libc-top-half/musl/src/stdio/open_wmemstream.c
libc-top-half/musl/src/stdio/stderr.c
libc-top-half/musl/src/stdio/stdin.c
libc-top-half/musl/src/stdio/stdout.c
libc-top-half/musl/src/stdio/vdprintf.c
libc-top-half/musl/src/stdio/vsnprintf.c
libc-top-half/musl/src/stdio/vsscanf.c
libc-top-half/musl/src/stdio/vswprintf.c
libc-top-half/musl/src/stdio/vswscanf.c
libc-top-half/musl/src/stdlib/wcstod.c
libc-top-half/musl/src/stdlib/wcstol.c