]> git.proxmox.com Git - wasi-libc.git/commit - libc-bottom-half/README.md
Merge the basics component into libc-bottom-half. (#199)
authorDan Gohman <sunfish@mozilla.com>
Mon, 1 Jun 2020 23:44:05 +0000 (16:44 -0700)
committerGitHub <noreply@github.com>
Mon, 1 Jun 2020 23:44:05 +0000 (16:44 -0700)
commit753cc4344d73bed95d6e784e3fa8d5a5fd21d196
tree8598fdbee7540166e464d00c38dc2323a11e810d
parent84c0778bff35bca3b5fa7814a3e1f3fb36362af6
Merge the basics component into libc-bottom-half. (#199)

We no longer have a need to maintain basics as a separate component.
Folding it into libc-bottom-half eliminates a fair amount of redundancy.
69 files changed:
Makefile
basics/crt/crt1.c [deleted file]
basics/include/__errno.h [deleted file]
basics/include/__functions_malloc.h [deleted file]
basics/include/__functions_memcpy.h [deleted file]
basics/include/__header_inttypes.h [deleted file]
basics/include/__macro_PAGESIZE.h [deleted file]
basics/include/__struct_stat.h [deleted file]
basics/include/__struct_timespec.h [deleted file]
basics/include/__typedef_blkcnt_t.h [deleted file]
basics/include/__typedef_blksize_t.h [deleted file]
basics/include/__typedef_clock_t.h [deleted file]
basics/include/__typedef_dev_t.h [deleted file]
basics/include/__typedef_gid_t.h [deleted file]
basics/include/__typedef_ino_t.h [deleted file]
basics/include/__typedef_mode_t.h [deleted file]
basics/include/__typedef_nlink_t.h [deleted file]
basics/include/__typedef_off_t.h [deleted file]
basics/include/__typedef_ssize_t.h [deleted file]
basics/include/__typedef_suseconds_t.h [deleted file]
basics/include/__typedef_time_t.h [deleted file]
basics/include/__typedef_uid_t.h [deleted file]
basics/include/errno.h [deleted file]
basics/include/inttypes.h [deleted file]
basics/include/stdlib.h [deleted file]
basics/include/string.h [deleted file]
basics/include/sys/stat.h [deleted file]
basics/include/sys/types.h [deleted file]
basics/include/time.h [deleted file]
basics/include/wchar.h [deleted file]
basics/sources/abort.c [deleted file]
basics/sources/complex-builtins.c [deleted file]
basics/sources/math/fmin-fmax.c [deleted file]
basics/sources/math/math-builtins.c [deleted file]
basics/sources/reallocarray.c [deleted file]
basics/sources/string.c [deleted file]
expected/wasm32-wasi/predefined-macros.txt
libc-bottom-half/README.md
libc-bottom-half/cloudlibc/src/libc/stdlib/qsort.c [deleted file]
libc-bottom-half/headers/public/__errno.h [new file with mode: 0644]
libc-bottom-half/headers/public/__functions_malloc.h [new file with mode: 0644]
libc-bottom-half/headers/public/__functions_memcpy.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_inttypes.h [new file with mode: 0644]
libc-bottom-half/headers/public/__macro_PAGESIZE.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_stat.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_timespec.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_blkcnt_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_blksize_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_clock_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_dev_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_gid_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_ino_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_mode_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_nlink_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_off_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_ssize_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_suseconds_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_time_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_uid_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/inttypes.h [new file with mode: 0644]
libc-bottom-half/headers/public/stdlib.h
libc-bottom-half/headers/public/wchar.h [new file with mode: 0644]
libc-bottom-half/sources/abort.c [new file with mode: 0644]
libc-bottom-half/sources/complex-builtins.c [new file with mode: 0644]
libc-bottom-half/sources/errno.c
libc-bottom-half/sources/math/fmin-fmax.c [new file with mode: 0644]
libc-bottom-half/sources/math/math-builtins.c [new file with mode: 0644]
libc-bottom-half/sources/reallocarray.c [new file with mode: 0644]
libc-bottom-half/sources/string.c [deleted file]