├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── basics ├── LICENSE ├── include │ ├── __struct_stat.h │ ├── __struct_timespec.h │ ├── __typedef_blkcnt_t.h │ ├── __typedef_blksize_t.h │ ├── __typedef_clock_t.h │ ├── __typedef_dev_t.h │ ├── __typedef_gid_t.h │ ├── __typedef_ino_t.h │ ├── __typedef_mode_t.h │ ├── __typedef_nlink_t.h │ ├── __typedef_off_t.h │ ├── __typedef_ssize_t.h │ ├── __typedef_suseconds_t.h │ ├── __typedef_time_t.h │ ├── __typedef_uid_t.h │ ├── errno.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── stat.h │ │ └── types.h │ ├── time.h │ └── wchar.h └── libc │ ├── crt1.s │ └── string.c └── dlmalloc ├── LICENSE ├── include └── unistd.h └── src ├── malloc.c └── wrapper.c /.gitignore: -------------------------------------------------------------------------------- 1 | sysroot 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/README.md -------------------------------------------------------------------------------- /basics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/LICENSE -------------------------------------------------------------------------------- /basics/include/__struct_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__struct_stat.h -------------------------------------------------------------------------------- /basics/include/__struct_timespec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__struct_timespec.h -------------------------------------------------------------------------------- /basics/include/__typedef_blkcnt_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_blkcnt_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_blksize_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_blksize_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_clock_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_clock_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_dev_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_dev_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_gid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_gid_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_ino_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_ino_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_mode_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_mode_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_nlink_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_nlink_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_off_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_off_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_ssize_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_ssize_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_suseconds_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_suseconds_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_time_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_time_t.h -------------------------------------------------------------------------------- /basics/include/__typedef_uid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/__typedef_uid_t.h -------------------------------------------------------------------------------- /basics/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/errno.h -------------------------------------------------------------------------------- /basics/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/stdlib.h -------------------------------------------------------------------------------- /basics/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/string.h -------------------------------------------------------------------------------- /basics/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/sys/stat.h -------------------------------------------------------------------------------- /basics/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/sys/types.h -------------------------------------------------------------------------------- /basics/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/time.h -------------------------------------------------------------------------------- /basics/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/include/wchar.h -------------------------------------------------------------------------------- /basics/libc/crt1.s: -------------------------------------------------------------------------------- 1 | # Empty. 2 | -------------------------------------------------------------------------------- /basics/libc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/basics/libc/string.c -------------------------------------------------------------------------------- /dlmalloc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/dlmalloc/LICENSE -------------------------------------------------------------------------------- /dlmalloc/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/dlmalloc/include/unistd.h -------------------------------------------------------------------------------- /dlmalloc/src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/dlmalloc/src/malloc.c -------------------------------------------------------------------------------- /dlmalloc/src/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc-old/HEAD/dlmalloc/src/wrapper.c --------------------------------------------------------------------------------