├── .gitmodules ├── LICENSE.md ├── Makefile ├── README.md ├── dist ├── cimgui.o ├── imgui.o ├── imgui_demo.o ├── imgui_draw.o └── imgui_widgets.o ├── docs ├── index.html └── spasm-imgui.wasm ├── spasm-imgui ├── .gitignore ├── dev-server.js ├── dub.sdl ├── dub.selections.json ├── package-lock.json ├── package.json ├── source │ ├── app.d │ └── imgui │ │ ├── funcs.d │ │ └── types.d ├── spasm │ ├── entry.js │ ├── index.template.html │ └── modules │ │ ├── bindings.js │ │ ├── index.js │ │ ├── spa.js │ │ ├── spasm.js │ │ └── wasi.js └── webpack.config.js └── sysroot ├── include ├── __errno.h ├── __errno_values.h ├── __fd_set.h ├── __function___isatty.h ├── __functions_malloc.h ├── __functions_memcpy.h ├── __header_bits_signal.h ├── __header_dirent.h ├── __header_fcntl.h ├── __header_inttypes.h ├── __header_netinet_in.h ├── __header_poll.h ├── __header_stdlib.h ├── __header_string.h ├── __header_sys_ioctl.h ├── __header_sys_resource.h ├── __header_sys_socket.h ├── __header_sys_stat.h ├── __header_time.h ├── __header_unistd.h ├── __macro_FD_SETSIZE.h ├── __macro_PAGESIZE.h ├── __mode_t.h ├── __seek.h ├── __struct_dirent.h ├── __struct_in6_addr.h ├── __struct_in_addr.h ├── __struct_iovec.h ├── __struct_msghdr.h ├── __struct_pollfd.h ├── __struct_rusage.h ├── __struct_sockaddr.h ├── __struct_sockaddr_in.h ├── __struct_sockaddr_in6.h ├── __struct_sockaddr_storage.h ├── __struct_sockaddr_un.h ├── __struct_stat.h ├── __struct_timespec.h ├── __struct_timeval.h ├── __struct_tm.h ├── __struct_tms.h ├── __typedef_DIR.h ├── __typedef_blkcnt_t.h ├── __typedef_blksize_t.h ├── __typedef_clock_t.h ├── __typedef_clockid_t.h ├── __typedef_dev_t.h ├── __typedef_fd_set.h ├── __typedef_gid_t.h ├── __typedef_in_addr_t.h ├── __typedef_in_port_t.h ├── __typedef_ino_t.h ├── __typedef_mode_t.h ├── __typedef_nfds_t.h ├── __typedef_nlink_t.h ├── __typedef_off_t.h ├── __typedef_sa_family_t.h ├── __typedef_sigset_t.h ├── __typedef_socklen_t.h ├── __typedef_ssize_t.h ├── __typedef_suseconds_t.h ├── __typedef_time_t.h ├── __typedef_uid_t.h ├── alloca.h ├── ar.h ├── arpa │ ├── ftp.h │ ├── inet.h │ ├── nameser.h │ ├── nameser_compat.h │ ├── telnet.h │ └── tftp.h ├── assert.h ├── bits │ ├── alltypes.h │ ├── endian.h │ ├── fcntl.h │ ├── fenv.h │ ├── float.h │ ├── hwcap.h │ ├── io.h │ ├── ioctl.h │ ├── ioctl_fix.h │ ├── limits.h │ ├── mman.h │ ├── poll.h │ ├── posix.h │ ├── reg.h │ ├── resource.h │ ├── signal.h │ ├── socket.h │ ├── stat.h │ └── stdint.h ├── byteswap.h ├── complex.h ├── cpio.h ├── crypt.h ├── ctype.h ├── dirent.h ├── endian.h ├── err.h ├── errno.h ├── fcntl.h ├── features.h ├── fenv.h ├── float.h ├── fmtmsg.h ├── fnmatch.h ├── ftw.h ├── getopt.h ├── glob.h ├── iconv.h ├── ifaddrs.h ├── inttypes.h ├── iso646.h ├── langinfo.h ├── libgen.h ├── libintl.h ├── limits.h ├── locale.h ├── malloc.h ├── math.h ├── memory.h ├── monetary.h ├── mqueue.h ├── netinet │ ├── icmp6.h │ ├── igmp.h │ ├── in.h │ ├── in_systm.h │ ├── ip.h │ ├── ip6.h │ ├── ip_icmp.h │ ├── tcp.h │ └── udp.h ├── netpacket │ └── packet.h ├── nl_types.h ├── poll.h ├── regex.h ├── sched.h ├── search.h ├── semaphore.h ├── signal.h ├── stdalign.h ├── stdarg.h ├── stdbool.h ├── stdc-predef.h ├── stddef.h ├── stdint.h ├── stdio.h ├── stdio_ext.h ├── stdlib.h ├── stdnoreturn.h ├── string.h ├── strings.h ├── stropts.h ├── sys │ ├── dir.h │ ├── errno.h │ ├── eventfd.h │ ├── fcntl.h │ ├── file.h │ ├── ioctl.h │ ├── mman.h │ ├── param.h │ ├── poll.h │ ├── random.h │ ├── reg.h │ ├── resource.h │ ├── select.h │ ├── signal.h │ ├── socket.h │ ├── stat.h │ ├── stropts.h │ ├── syscall.h │ ├── sysinfo.h │ ├── sysmacros.h │ ├── time.h │ ├── timeb.h │ ├── times.h │ ├── timex.h │ ├── ttydefaults.h │ ├── types.h │ ├── uio.h │ ├── un.h │ └── utsname.h ├── syscall.h ├── sysexits.h ├── tar.h ├── tgmath.h ├── threads.h ├── time.h ├── uchar.h ├── unistd.h ├── utime.h ├── values.h ├── wasi │ ├── core.h │ ├── libc-find-relpath.h │ └── libc.h ├── wchar.h └── wctype.h ├── lib └── wasm32-wasi │ ├── crt1.o │ ├── libc-printscan-long-double.a │ ├── libc-printscan-no-floating-point.a │ ├── libc.a │ ├── libc.imports │ ├── libcrypt.a │ ├── libdl.a │ ├── libm.a │ ├── libpthread.a │ ├── libresolv.a │ ├── librt.a │ ├── libutil.a │ ├── libwasi-emulated-mman.a │ └── libxnet.a └── share └── wasm32-wasi ├── defined-symbols.txt ├── include-all.c ├── predefined-macros.txt └── undefined-symbols.txt /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/README.md -------------------------------------------------------------------------------- /dist/cimgui.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/dist/cimgui.o -------------------------------------------------------------------------------- /dist/imgui.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/dist/imgui.o -------------------------------------------------------------------------------- /dist/imgui_demo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/dist/imgui_demo.o -------------------------------------------------------------------------------- /dist/imgui_draw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/dist/imgui_draw.o -------------------------------------------------------------------------------- /dist/imgui_widgets.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/dist/imgui_widgets.o -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/spasm-imgui.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/docs/spasm-imgui.wasm -------------------------------------------------------------------------------- /spasm-imgui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/.gitignore -------------------------------------------------------------------------------- /spasm-imgui/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/dev-server.js -------------------------------------------------------------------------------- /spasm-imgui/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/dub.sdl -------------------------------------------------------------------------------- /spasm-imgui/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/dub.selections.json -------------------------------------------------------------------------------- /spasm-imgui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/package-lock.json -------------------------------------------------------------------------------- /spasm-imgui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/package.json -------------------------------------------------------------------------------- /spasm-imgui/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/source/app.d -------------------------------------------------------------------------------- /spasm-imgui/source/imgui/funcs.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/source/imgui/funcs.d -------------------------------------------------------------------------------- /spasm-imgui/source/imgui/types.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/source/imgui/types.d -------------------------------------------------------------------------------- /spasm-imgui/spasm/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/spasm/entry.js -------------------------------------------------------------------------------- /spasm-imgui/spasm/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/spasm/index.template.html -------------------------------------------------------------------------------- /spasm-imgui/spasm/modules/bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/spasm/modules/bindings.js -------------------------------------------------------------------------------- /spasm-imgui/spasm/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/spasm/modules/index.js -------------------------------------------------------------------------------- /spasm-imgui/spasm/modules/spa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/spasm/modules/spa.js -------------------------------------------------------------------------------- /spasm-imgui/spasm/modules/spasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/spasm/modules/spasm.js -------------------------------------------------------------------------------- /spasm-imgui/spasm/modules/wasi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/spasm/modules/wasi.js -------------------------------------------------------------------------------- /spasm-imgui/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/spasm-imgui/webpack.config.js -------------------------------------------------------------------------------- /sysroot/include/__errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__errno.h -------------------------------------------------------------------------------- /sysroot/include/__errno_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__errno_values.h -------------------------------------------------------------------------------- /sysroot/include/__fd_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__fd_set.h -------------------------------------------------------------------------------- /sysroot/include/__function___isatty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__function___isatty.h -------------------------------------------------------------------------------- /sysroot/include/__functions_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__functions_malloc.h -------------------------------------------------------------------------------- /sysroot/include/__functions_memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__functions_memcpy.h -------------------------------------------------------------------------------- /sysroot/include/__header_bits_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_bits_signal.h -------------------------------------------------------------------------------- /sysroot/include/__header_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_dirent.h -------------------------------------------------------------------------------- /sysroot/include/__header_fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_fcntl.h -------------------------------------------------------------------------------- /sysroot/include/__header_inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_inttypes.h -------------------------------------------------------------------------------- /sysroot/include/__header_netinet_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_netinet_in.h -------------------------------------------------------------------------------- /sysroot/include/__header_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_poll.h -------------------------------------------------------------------------------- /sysroot/include/__header_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_stdlib.h -------------------------------------------------------------------------------- /sysroot/include/__header_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_string.h -------------------------------------------------------------------------------- /sysroot/include/__header_sys_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_sys_ioctl.h -------------------------------------------------------------------------------- /sysroot/include/__header_sys_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_sys_resource.h -------------------------------------------------------------------------------- /sysroot/include/__header_sys_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_sys_socket.h -------------------------------------------------------------------------------- /sysroot/include/__header_sys_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_sys_stat.h -------------------------------------------------------------------------------- /sysroot/include/__header_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_time.h -------------------------------------------------------------------------------- /sysroot/include/__header_unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__header_unistd.h -------------------------------------------------------------------------------- /sysroot/include/__macro_FD_SETSIZE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__macro_FD_SETSIZE.h -------------------------------------------------------------------------------- /sysroot/include/__macro_PAGESIZE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__macro_PAGESIZE.h -------------------------------------------------------------------------------- /sysroot/include/__mode_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__mode_t.h -------------------------------------------------------------------------------- /sysroot/include/__seek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__seek.h -------------------------------------------------------------------------------- /sysroot/include/__struct_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_dirent.h -------------------------------------------------------------------------------- /sysroot/include/__struct_in6_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_in6_addr.h -------------------------------------------------------------------------------- /sysroot/include/__struct_in_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_in_addr.h -------------------------------------------------------------------------------- /sysroot/include/__struct_iovec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_iovec.h -------------------------------------------------------------------------------- /sysroot/include/__struct_msghdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_msghdr.h -------------------------------------------------------------------------------- /sysroot/include/__struct_pollfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_pollfd.h -------------------------------------------------------------------------------- /sysroot/include/__struct_rusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_rusage.h -------------------------------------------------------------------------------- /sysroot/include/__struct_sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_sockaddr.h -------------------------------------------------------------------------------- /sysroot/include/__struct_sockaddr_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_sockaddr_in.h -------------------------------------------------------------------------------- /sysroot/include/__struct_sockaddr_in6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_sockaddr_in6.h -------------------------------------------------------------------------------- /sysroot/include/__struct_sockaddr_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_sockaddr_storage.h -------------------------------------------------------------------------------- /sysroot/include/__struct_sockaddr_un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_sockaddr_un.h -------------------------------------------------------------------------------- /sysroot/include/__struct_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_stat.h -------------------------------------------------------------------------------- /sysroot/include/__struct_timespec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_timespec.h -------------------------------------------------------------------------------- /sysroot/include/__struct_timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_timeval.h -------------------------------------------------------------------------------- /sysroot/include/__struct_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_tm.h -------------------------------------------------------------------------------- /sysroot/include/__struct_tms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__struct_tms.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_DIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_DIR.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_blkcnt_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_blkcnt_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_blksize_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_blksize_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_clock_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_clock_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_clockid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_clockid_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_dev_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_dev_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_fd_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_fd_set.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_gid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_gid_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_in_addr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_in_addr_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_in_port_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_in_port_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_ino_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_ino_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_mode_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_mode_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_nfds_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_nfds_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_nlink_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_nlink_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_off_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_off_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_sa_family_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_sa_family_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_sigset_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_sigset_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_socklen_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_socklen_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_ssize_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_ssize_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_suseconds_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_suseconds_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_time_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_time_t.h -------------------------------------------------------------------------------- /sysroot/include/__typedef_uid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/__typedef_uid_t.h -------------------------------------------------------------------------------- /sysroot/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/alloca.h -------------------------------------------------------------------------------- /sysroot/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/ar.h -------------------------------------------------------------------------------- /sysroot/include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/arpa/ftp.h -------------------------------------------------------------------------------- /sysroot/include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/arpa/inet.h -------------------------------------------------------------------------------- /sysroot/include/arpa/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/arpa/nameser.h -------------------------------------------------------------------------------- /sysroot/include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /sysroot/include/arpa/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/arpa/telnet.h -------------------------------------------------------------------------------- /sysroot/include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/arpa/tftp.h -------------------------------------------------------------------------------- /sysroot/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/assert.h -------------------------------------------------------------------------------- /sysroot/include/bits/alltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/bits/alltypes.h -------------------------------------------------------------------------------- /sysroot/include/bits/endian.h: -------------------------------------------------------------------------------- 1 | #define __BYTE_ORDER __LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /sysroot/include/bits/fcntl.h: -------------------------------------------------------------------------------- 1 | /* Use the WASI libc fcntl implementation bits. */ 2 | -------------------------------------------------------------------------------- /sysroot/include/bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/bits/fenv.h -------------------------------------------------------------------------------- /sysroot/include/bits/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/bits/float.h -------------------------------------------------------------------------------- /sysroot/include/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/include/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/include/bits/ioctl.h: -------------------------------------------------------------------------------- 1 | /* Use the WASI libc ioctl implementation bits. */ 2 | -------------------------------------------------------------------------------- /sysroot/include/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/include/bits/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/bits/limits.h -------------------------------------------------------------------------------- /sysroot/include/bits/mman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/include/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/include/bits/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/bits/posix.h -------------------------------------------------------------------------------- /sysroot/include/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/bits/reg.h -------------------------------------------------------------------------------- /sysroot/include/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/include/bits/signal.h: -------------------------------------------------------------------------------- 1 | #include <__header_bits_signal.h> 2 | -------------------------------------------------------------------------------- /sysroot/include/bits/socket.h: -------------------------------------------------------------------------------- 1 | #include <__struct_msghdr.h> 2 | -------------------------------------------------------------------------------- /sysroot/include/bits/stat.h: -------------------------------------------------------------------------------- 1 | #include <__struct_stat.h> 2 | -------------------------------------------------------------------------------- /sysroot/include/bits/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/bits/stdint.h -------------------------------------------------------------------------------- /sysroot/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/byteswap.h -------------------------------------------------------------------------------- /sysroot/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/complex.h -------------------------------------------------------------------------------- /sysroot/include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/cpio.h -------------------------------------------------------------------------------- /sysroot/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/crypt.h -------------------------------------------------------------------------------- /sysroot/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/ctype.h -------------------------------------------------------------------------------- /sysroot/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/dirent.h -------------------------------------------------------------------------------- /sysroot/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/endian.h -------------------------------------------------------------------------------- /sysroot/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/err.h -------------------------------------------------------------------------------- /sysroot/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/errno.h -------------------------------------------------------------------------------- /sysroot/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/fcntl.h -------------------------------------------------------------------------------- /sysroot/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/features.h -------------------------------------------------------------------------------- /sysroot/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/fenv.h -------------------------------------------------------------------------------- /sysroot/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/float.h -------------------------------------------------------------------------------- /sysroot/include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/fmtmsg.h -------------------------------------------------------------------------------- /sysroot/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/fnmatch.h -------------------------------------------------------------------------------- /sysroot/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/ftw.h -------------------------------------------------------------------------------- /sysroot/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/getopt.h -------------------------------------------------------------------------------- /sysroot/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/glob.h -------------------------------------------------------------------------------- /sysroot/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/iconv.h -------------------------------------------------------------------------------- /sysroot/include/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/ifaddrs.h -------------------------------------------------------------------------------- /sysroot/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/inttypes.h -------------------------------------------------------------------------------- /sysroot/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/iso646.h -------------------------------------------------------------------------------- /sysroot/include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/langinfo.h -------------------------------------------------------------------------------- /sysroot/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/libgen.h -------------------------------------------------------------------------------- /sysroot/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/libintl.h -------------------------------------------------------------------------------- /sysroot/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/limits.h -------------------------------------------------------------------------------- /sysroot/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/locale.h -------------------------------------------------------------------------------- /sysroot/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/malloc.h -------------------------------------------------------------------------------- /sysroot/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/math.h -------------------------------------------------------------------------------- /sysroot/include/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysroot/include/monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/monetary.h -------------------------------------------------------------------------------- /sysroot/include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/mqueue.h -------------------------------------------------------------------------------- /sysroot/include/netinet/icmp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/netinet/icmp6.h -------------------------------------------------------------------------------- /sysroot/include/netinet/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/netinet/igmp.h -------------------------------------------------------------------------------- /sysroot/include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/netinet/in.h -------------------------------------------------------------------------------- /sysroot/include/netinet/in_systm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/netinet/in_systm.h -------------------------------------------------------------------------------- /sysroot/include/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/netinet/ip.h -------------------------------------------------------------------------------- /sysroot/include/netinet/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/netinet/ip6.h -------------------------------------------------------------------------------- /sysroot/include/netinet/ip_icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/netinet/ip_icmp.h -------------------------------------------------------------------------------- /sysroot/include/netinet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/netinet/tcp.h -------------------------------------------------------------------------------- /sysroot/include/netinet/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/netinet/udp.h -------------------------------------------------------------------------------- /sysroot/include/netpacket/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/netpacket/packet.h -------------------------------------------------------------------------------- /sysroot/include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/nl_types.h -------------------------------------------------------------------------------- /sysroot/include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/poll.h -------------------------------------------------------------------------------- /sysroot/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/regex.h -------------------------------------------------------------------------------- /sysroot/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sched.h -------------------------------------------------------------------------------- /sysroot/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/search.h -------------------------------------------------------------------------------- /sysroot/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/semaphore.h -------------------------------------------------------------------------------- /sysroot/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/signal.h -------------------------------------------------------------------------------- /sysroot/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stdalign.h -------------------------------------------------------------------------------- /sysroot/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stdarg.h -------------------------------------------------------------------------------- /sysroot/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stdbool.h -------------------------------------------------------------------------------- /sysroot/include/stdc-predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stdc-predef.h -------------------------------------------------------------------------------- /sysroot/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stddef.h -------------------------------------------------------------------------------- /sysroot/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stdint.h -------------------------------------------------------------------------------- /sysroot/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stdio.h -------------------------------------------------------------------------------- /sysroot/include/stdio_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stdio_ext.h -------------------------------------------------------------------------------- /sysroot/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stdlib.h -------------------------------------------------------------------------------- /sysroot/include/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stdnoreturn.h -------------------------------------------------------------------------------- /sysroot/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/string.h -------------------------------------------------------------------------------- /sysroot/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/strings.h -------------------------------------------------------------------------------- /sysroot/include/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/stropts.h -------------------------------------------------------------------------------- /sysroot/include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/dir.h -------------------------------------------------------------------------------- /sysroot/include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/errno.h -------------------------------------------------------------------------------- /sysroot/include/sys/eventfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/eventfd.h -------------------------------------------------------------------------------- /sysroot/include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/fcntl.h -------------------------------------------------------------------------------- /sysroot/include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/file.h -------------------------------------------------------------------------------- /sysroot/include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/ioctl.h -------------------------------------------------------------------------------- /sysroot/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/mman.h -------------------------------------------------------------------------------- /sysroot/include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/param.h -------------------------------------------------------------------------------- /sysroot/include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/poll.h -------------------------------------------------------------------------------- /sysroot/include/sys/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/random.h -------------------------------------------------------------------------------- /sysroot/include/sys/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/reg.h -------------------------------------------------------------------------------- /sysroot/include/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/resource.h -------------------------------------------------------------------------------- /sysroot/include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/select.h -------------------------------------------------------------------------------- /sysroot/include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/signal.h -------------------------------------------------------------------------------- /sysroot/include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/socket.h -------------------------------------------------------------------------------- /sysroot/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/stat.h -------------------------------------------------------------------------------- /sysroot/include/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysroot/include/sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/syscall.h -------------------------------------------------------------------------------- /sysroot/include/sys/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/sysinfo.h -------------------------------------------------------------------------------- /sysroot/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/sysmacros.h -------------------------------------------------------------------------------- /sysroot/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/time.h -------------------------------------------------------------------------------- /sysroot/include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/timeb.h -------------------------------------------------------------------------------- /sysroot/include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/times.h -------------------------------------------------------------------------------- /sysroot/include/sys/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/timex.h -------------------------------------------------------------------------------- /sysroot/include/sys/ttydefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/ttydefaults.h -------------------------------------------------------------------------------- /sysroot/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/types.h -------------------------------------------------------------------------------- /sysroot/include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/uio.h -------------------------------------------------------------------------------- /sysroot/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/un.h -------------------------------------------------------------------------------- /sysroot/include/sys/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sys/utsname.h -------------------------------------------------------------------------------- /sysroot/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysroot/include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/sysexits.h -------------------------------------------------------------------------------- /sysroot/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/tar.h -------------------------------------------------------------------------------- /sysroot/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/tgmath.h -------------------------------------------------------------------------------- /sysroot/include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/threads.h -------------------------------------------------------------------------------- /sysroot/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/time.h -------------------------------------------------------------------------------- /sysroot/include/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/uchar.h -------------------------------------------------------------------------------- /sysroot/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/unistd.h -------------------------------------------------------------------------------- /sysroot/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/utime.h -------------------------------------------------------------------------------- /sysroot/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/values.h -------------------------------------------------------------------------------- /sysroot/include/wasi/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/wasi/core.h -------------------------------------------------------------------------------- /sysroot/include/wasi/libc-find-relpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/wasi/libc-find-relpath.h -------------------------------------------------------------------------------- /sysroot/include/wasi/libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/wasi/libc.h -------------------------------------------------------------------------------- /sysroot/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/wchar.h -------------------------------------------------------------------------------- /sysroot/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/include/wctype.h -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/crt1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/lib/wasm32-wasi/crt1.o -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libc-printscan-long-double.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/lib/wasm32-wasi/libc-printscan-long-double.a -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libc-printscan-no-floating-point.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/lib/wasm32-wasi/libc-printscan-no-floating-point.a -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/lib/wasm32-wasi/libc.a -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libc.imports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/lib/wasm32-wasi/libc.imports -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libcrypt.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libdl.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libm.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libpthread.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libresolv.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/librt.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libutil.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libwasi-emulated-mman.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/lib/wasm32-wasi/libwasi-emulated-mman.a -------------------------------------------------------------------------------- /sysroot/lib/wasm32-wasi/libxnet.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /sysroot/share/wasm32-wasi/defined-symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/share/wasm32-wasi/defined-symbols.txt -------------------------------------------------------------------------------- /sysroot/share/wasm32-wasi/include-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/share/wasm32-wasi/include-all.c -------------------------------------------------------------------------------- /sysroot/share/wasm32-wasi/predefined-macros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/share/wasm32-wasi/predefined-macros.txt -------------------------------------------------------------------------------- /sysroot/share/wasm32-wasi/undefined-symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skoppe/spasm-imgui/HEAD/sysroot/share/wasm32-wasi/undefined-symbols.txt --------------------------------------------------------------------------------