├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── Makefile ├── README.markdown ├── download └── .gitignore ├── generate-stubs.py ├── src ├── TargetConditionals.h ├── _types.h ├── arm64 │ └── libSystem.s ├── availability.h ├── libSystem.h ├── signal.h ├── stdint.h ├── usr │ └── include │ │ ├── Availability.h │ │ ├── AvailabilityInternal.h │ │ ├── AvailabilityMacros.h │ │ ├── TargetConditionals.h │ │ ├── __wctype.h │ │ ├── _ctermid.h │ │ ├── _ctype.h │ │ ├── _locale.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _types.h │ │ ├── _types │ │ ├── _intmax_t.h │ │ ├── _nl_item.h │ │ ├── _uint16_t.h │ │ ├── _uint32_t.h │ │ ├── _uint64_t.h │ │ ├── _uint8_t.h │ │ ├── _uintmax_t.h │ │ ├── _wctrans_t.h │ │ └── _wctype_t.h │ │ ├── _wctype.h │ │ ├── _xlocale.h │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── arm │ │ ├── _limits.h │ │ ├── _mcontext.h │ │ ├── _param.h │ │ ├── _types.h │ │ ├── arch.h │ │ ├── endian.h │ │ ├── limits.h │ │ ├── param.h │ │ └── types.h │ │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── nameser_compat.h │ │ ├── telnet.h │ │ └── tftp.h │ │ ├── assert.h │ │ ├── bitstring.h │ │ ├── bsm │ │ └── audit.h │ │ ├── cpio.h │ │ ├── crt_externs.h │ │ ├── ctype.h │ │ ├── db.h │ │ ├── dirent.h │ │ ├── disktab.h │ │ ├── dispatch │ │ ├── base.h │ │ ├── block.h │ │ ├── data.h │ │ ├── dispatch.h │ │ ├── group.h │ │ ├── introspection.h │ │ ├── io.h │ │ ├── object.h │ │ ├── once.h │ │ ├── queue.h │ │ ├── semaphore.h │ │ ├── source.h │ │ ├── time.h │ │ └── workloop.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── fsproperties.h │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── ftw.h │ │ ├── gethostuuid.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── i386 │ │ ├── _limits.h │ │ ├── _mcontext.h │ │ ├── _param.h │ │ ├── _types.h │ │ ├── eflags.h │ │ ├── endian.h │ │ ├── limits.h │ │ ├── param.h │ │ └── types.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── libc.h │ │ ├── libgen.h │ │ ├── libkern │ │ ├── OSThermalNotification.h │ │ ├── _OSByteOrder.h │ │ ├── arm │ │ │ └── OSByteOrder.h │ │ └── i386 │ │ │ └── _OSByteOrder.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── mach-o │ │ ├── getsect.h │ │ └── loader.h │ │ ├── mach │ │ ├── arm │ │ │ ├── _structs.h │ │ │ ├── boolean.h │ │ │ ├── kern_return.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ └── vm_types.h │ │ ├── boolean.h │ │ ├── clock_types.h │ │ ├── i386 │ │ │ ├── _structs.h │ │ │ ├── boolean.h │ │ │ ├── fp_reg.h │ │ │ ├── kern_return.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ └── vm_types.h │ │ ├── kern_return.h │ │ ├── machine │ │ │ ├── _structs.h │ │ │ ├── boolean.h │ │ │ ├── kern_return.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ └── vm_types.h │ │ ├── message.h │ │ ├── port.h │ │ ├── thread_status.h │ │ ├── time_value.h │ │ └── vm_types.h │ │ ├── machine │ │ ├── _mcontext.h │ │ ├── _types.h │ │ ├── endian.h │ │ ├── limits.h │ │ ├── param.h │ │ ├── signal.h │ │ └── types.h │ │ ├── malloc │ │ ├── _malloc.h │ │ └── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── monetary.h │ │ ├── monitor.h │ │ ├── mpool.h │ │ ├── ndbm.h │ │ ├── nlist.h │ │ ├── os │ │ ├── availability.h │ │ ├── base.h │ │ ├── clock.h │ │ ├── object.h │ │ ├── workgroup.h │ │ ├── workgroup_base.h │ │ ├── workgroup_interval.h │ │ ├── workgroup_object.h │ │ └── workgroup_parallel.h │ │ ├── paths.h │ │ ├── poll.h │ │ ├── printf.h │ │ ├── protocols │ │ ├── routed.h │ │ ├── rwhod.h │ │ ├── talkd.h │ │ └── timed.h │ │ ├── pthread.h │ │ ├── pthread │ │ ├── pthread_impl.h │ │ ├── qos.h │ │ └── sched.h │ │ ├── ranlib.h │ │ ├── readpassphrase.h │ │ ├── regex.h │ │ ├── rune.h │ │ ├── runetype.h │ │ ├── search.h │ │ ├── secure │ │ ├── _common.h │ │ ├── _stdio.h │ │ ├── _string.h │ │ └── _strings.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── sgtty.h │ │ ├── signal.h │ │ ├── stab.h │ │ ├── standards.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── strhash.h │ │ ├── string.h │ │ ├── stringlist.h │ │ ├── strings.h │ │ ├── struct.h │ │ ├── sys │ │ ├── _endian.h │ │ ├── _posix_availability.h │ │ ├── _pthread │ │ │ ├── _pthread_attr_t.h │ │ │ ├── _pthread_cond_t.h │ │ │ ├── _pthread_condattr_t.h │ │ │ ├── _pthread_key_t.h │ │ │ ├── _pthread_mutex_t.h │ │ │ ├── _pthread_mutexattr_t.h │ │ │ ├── _pthread_once_t.h │ │ │ ├── _pthread_rwlock_t.h │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ ├── _pthread_t.h │ │ │ └── _pthread_types.h │ │ ├── _select.h │ │ ├── _symbol_aliasing.h │ │ ├── _types.h │ │ ├── _types │ │ │ ├── _blkcnt_t.h │ │ │ ├── _blksize_t.h │ │ │ ├── _caddr_t.h │ │ │ ├── _clock_t.h │ │ │ ├── _ct_rune_t.h │ │ │ ├── _dev_t.h │ │ │ ├── _errno_t.h │ │ │ ├── _fd_clr.h │ │ │ ├── _fd_copy.h │ │ │ ├── _fd_def.h │ │ │ ├── _fd_isset.h │ │ │ ├── _fd_set.h │ │ │ ├── _fd_setsize.h │ │ │ ├── _fd_zero.h │ │ │ ├── _filesec_t.h │ │ │ ├── _fsblkcnt_t.h │ │ │ ├── _fsfilcnt_t.h │ │ │ ├── _fsid_t.h │ │ │ ├── _fsobj_id_t.h │ │ │ ├── _gid_t.h │ │ │ ├── _guid_t.h │ │ │ ├── _id_t.h │ │ │ ├── _in_addr_t.h │ │ │ ├── _in_port_t.h │ │ │ ├── _ino64_t.h │ │ │ ├── _ino_t.h │ │ │ ├── _int16_t.h │ │ │ ├── _int32_t.h │ │ │ ├── _int64_t.h │ │ │ ├── _int8_t.h │ │ │ ├── _intptr_t.h │ │ │ ├── _iovec_t.h │ │ │ ├── _key_t.h │ │ │ ├── _mach_port_t.h │ │ │ ├── _mbstate_t.h │ │ │ ├── _mode_t.h │ │ │ ├── _nlink_t.h │ │ │ ├── _null.h │ │ │ ├── _o_dsync.h │ │ │ ├── _o_sync.h │ │ │ ├── _off_t.h │ │ │ ├── _offsetof.h │ │ │ ├── _os_inline.h │ │ │ ├── _pid_t.h │ │ │ ├── _posix_vdisable.h │ │ │ ├── _ptrdiff_t.h │ │ │ ├── _rsize_t.h │ │ │ ├── _rune_t.h │ │ │ ├── _s_ifmt.h │ │ │ ├── _sa_family_t.h │ │ │ ├── _seek_set.h │ │ │ ├── _sigaltstack.h │ │ │ ├── _sigset_t.h │ │ │ ├── _size_t.h │ │ │ ├── _socklen_t.h │ │ │ ├── _ssize_t.h │ │ │ ├── _suseconds_t.h │ │ │ ├── _time_t.h │ │ │ ├── _timespec.h │ │ │ ├── _timeval.h │ │ │ ├── _timeval32.h │ │ │ ├── _timeval64.h │ │ │ ├── _u_char.h │ │ │ ├── _u_int.h │ │ │ ├── _u_int16_t.h │ │ │ ├── _u_int32_t.h │ │ │ ├── _u_int64_t.h │ │ │ ├── _u_int8_t.h │ │ │ ├── _u_short.h │ │ │ ├── _ucontext.h │ │ │ ├── _ucontext64.h │ │ │ ├── _uid_t.h │ │ │ ├── _uintptr_t.h │ │ │ ├── _useconds_t.h │ │ │ ├── _uuid_t.h │ │ │ ├── _va_list.h │ │ │ ├── _wchar_t.h │ │ │ └── _wint_t.h │ │ ├── acl.h │ │ ├── appleapiopts.h │ │ ├── cdefs.h │ │ ├── dirent.h │ │ ├── errno.h │ │ ├── event.h │ │ ├── fcntl.h │ │ ├── lock.h │ │ ├── mman.h │ │ ├── param.h │ │ ├── proc.h │ │ ├── qos.h │ │ ├── queue.h │ │ ├── rbtree.h │ │ ├── resource.h │ │ ├── select.h │ │ ├── semaphore.h │ │ ├── signal.h │ │ ├── stat.h │ │ ├── statvfs.h │ │ ├── stdio.h │ │ ├── sysctl.h │ │ ├── syslimits.h │ │ ├── time.h │ │ ├── types.h │ │ ├── ucontext.h │ │ ├── ucred.h │ │ ├── unistd.h │ │ ├── vm.h │ │ └── wait.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timeconv.h │ │ ├── ttyent.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── util.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── vis.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ ├── wordexp.h │ │ ├── xlocale.h │ │ └── xlocale │ │ ├── __wctype.h │ │ ├── _ctype.h │ │ ├── _inttypes.h │ │ ├── _langinfo.h │ │ ├── _monetary.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _stdlib.h │ │ ├── _string.h │ │ ├── _time.h │ │ ├── _wchar.h │ │ └── _wctype.h └── x86_64 │ └── libSystem.s ├── test └── hello.c ├── update.sh └── versions.inc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /sysroot-* 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/Makefile -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/README.markdown -------------------------------------------------------------------------------- /download/.gitignore: -------------------------------------------------------------------------------- 1 | *.tar.gz 2 | -------------------------------------------------------------------------------- /generate-stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/generate-stubs.py -------------------------------------------------------------------------------- /src/TargetConditionals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/TargetConditionals.h -------------------------------------------------------------------------------- /src/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/_types.h -------------------------------------------------------------------------------- /src/arm64/libSystem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/arm64/libSystem.s -------------------------------------------------------------------------------- /src/availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/availability.h -------------------------------------------------------------------------------- /src/libSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/libSystem.h -------------------------------------------------------------------------------- /src/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/signal.h -------------------------------------------------------------------------------- /src/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/stdint.h -------------------------------------------------------------------------------- /src/usr/include/Availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/Availability.h -------------------------------------------------------------------------------- /src/usr/include/AvailabilityInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/AvailabilityInternal.h -------------------------------------------------------------------------------- /src/usr/include/AvailabilityMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/AvailabilityMacros.h -------------------------------------------------------------------------------- /src/usr/include/TargetConditionals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/TargetConditionals.h -------------------------------------------------------------------------------- /src/usr/include/__wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/__wctype.h -------------------------------------------------------------------------------- /src/usr/include/_ctermid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_ctermid.h -------------------------------------------------------------------------------- /src/usr/include/_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_ctype.h -------------------------------------------------------------------------------- /src/usr/include/_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_locale.h -------------------------------------------------------------------------------- /src/usr/include/_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_regex.h -------------------------------------------------------------------------------- /src/usr/include/_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_stdio.h -------------------------------------------------------------------------------- /src/usr/include/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_types.h -------------------------------------------------------------------------------- /src/usr/include/_types/_intmax_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_types/_intmax_t.h -------------------------------------------------------------------------------- /src/usr/include/_types/_nl_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_types/_nl_item.h -------------------------------------------------------------------------------- /src/usr/include/_types/_uint16_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_types/_uint16_t.h -------------------------------------------------------------------------------- /src/usr/include/_types/_uint32_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_types/_uint32_t.h -------------------------------------------------------------------------------- /src/usr/include/_types/_uint64_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_types/_uint64_t.h -------------------------------------------------------------------------------- /src/usr/include/_types/_uint8_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_types/_uint8_t.h -------------------------------------------------------------------------------- /src/usr/include/_types/_uintmax_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_types/_uintmax_t.h -------------------------------------------------------------------------------- /src/usr/include/_types/_wctrans_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_types/_wctrans_t.h -------------------------------------------------------------------------------- /src/usr/include/_types/_wctype_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_types/_wctype_t.h -------------------------------------------------------------------------------- /src/usr/include/_wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_wctype.h -------------------------------------------------------------------------------- /src/usr/include/_xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/_xlocale.h -------------------------------------------------------------------------------- /src/usr/include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/aio.h -------------------------------------------------------------------------------- /src/usr/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/alloca.h -------------------------------------------------------------------------------- /src/usr/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/ar.h -------------------------------------------------------------------------------- /src/usr/include/arm/_limits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/usr/include/arm/_mcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arm/_mcontext.h -------------------------------------------------------------------------------- /src/usr/include/arm/_param.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/usr/include/arm/_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/usr/include/arm/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arm/arch.h -------------------------------------------------------------------------------- /src/usr/include/arm/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arm/endian.h -------------------------------------------------------------------------------- /src/usr/include/arm/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arm/limits.h -------------------------------------------------------------------------------- /src/usr/include/arm/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arm/param.h -------------------------------------------------------------------------------- /src/usr/include/arm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arm/types.h -------------------------------------------------------------------------------- /src/usr/include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arpa/ftp.h -------------------------------------------------------------------------------- /src/usr/include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arpa/inet.h -------------------------------------------------------------------------------- /src/usr/include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arpa/nameser_compat.h -------------------------------------------------------------------------------- /src/usr/include/arpa/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arpa/telnet.h -------------------------------------------------------------------------------- /src/usr/include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/arpa/tftp.h -------------------------------------------------------------------------------- /src/usr/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/assert.h -------------------------------------------------------------------------------- /src/usr/include/bitstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/bitstring.h -------------------------------------------------------------------------------- /src/usr/include/bsm/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/bsm/audit.h -------------------------------------------------------------------------------- /src/usr/include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/cpio.h -------------------------------------------------------------------------------- /src/usr/include/crt_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/crt_externs.h -------------------------------------------------------------------------------- /src/usr/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/ctype.h -------------------------------------------------------------------------------- /src/usr/include/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/db.h -------------------------------------------------------------------------------- /src/usr/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dirent.h -------------------------------------------------------------------------------- /src/usr/include/disktab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/disktab.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/base.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/block.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/data.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/dispatch.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/group.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/introspection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/introspection.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/io.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/object.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/once.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/queue.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/semaphore.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/source.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/time.h -------------------------------------------------------------------------------- /src/usr/include/dispatch/workloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/dispatch/workloop.h -------------------------------------------------------------------------------- /src/usr/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/err.h -------------------------------------------------------------------------------- /src/usr/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/errno.h -------------------------------------------------------------------------------- /src/usr/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/fcntl.h -------------------------------------------------------------------------------- /src/usr/include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/fmtmsg.h -------------------------------------------------------------------------------- /src/usr/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/fnmatch.h -------------------------------------------------------------------------------- /src/usr/include/fsproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/fsproperties.h -------------------------------------------------------------------------------- /src/usr/include/fstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/fstab.h -------------------------------------------------------------------------------- /src/usr/include/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/fts.h -------------------------------------------------------------------------------- /src/usr/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/ftw.h -------------------------------------------------------------------------------- /src/usr/include/gethostuuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/gethostuuid.h -------------------------------------------------------------------------------- /src/usr/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/getopt.h -------------------------------------------------------------------------------- /src/usr/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/glob.h -------------------------------------------------------------------------------- /src/usr/include/i386/_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/i386/_limits.h -------------------------------------------------------------------------------- /src/usr/include/i386/_mcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/i386/_mcontext.h -------------------------------------------------------------------------------- /src/usr/include/i386/_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/i386/_param.h -------------------------------------------------------------------------------- /src/usr/include/i386/_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/usr/include/i386/eflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/i386/eflags.h -------------------------------------------------------------------------------- /src/usr/include/i386/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/i386/endian.h -------------------------------------------------------------------------------- /src/usr/include/i386/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/i386/limits.h -------------------------------------------------------------------------------- /src/usr/include/i386/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/i386/param.h -------------------------------------------------------------------------------- /src/usr/include/i386/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/i386/types.h -------------------------------------------------------------------------------- /src/usr/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/inttypes.h -------------------------------------------------------------------------------- /src/usr/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/iso646.h -------------------------------------------------------------------------------- /src/usr/include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/langinfo.h -------------------------------------------------------------------------------- /src/usr/include/libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/libc.h -------------------------------------------------------------------------------- /src/usr/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/libgen.h -------------------------------------------------------------------------------- /src/usr/include/libkern/OSThermalNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/libkern/OSThermalNotification.h -------------------------------------------------------------------------------- /src/usr/include/libkern/_OSByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/libkern/_OSByteOrder.h -------------------------------------------------------------------------------- /src/usr/include/libkern/arm/OSByteOrder.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/usr/include/libkern/i386/_OSByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/libkern/i386/_OSByteOrder.h -------------------------------------------------------------------------------- /src/usr/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/limits.h -------------------------------------------------------------------------------- /src/usr/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/locale.h -------------------------------------------------------------------------------- /src/usr/include/mach-o/getsect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach-o/getsect.h -------------------------------------------------------------------------------- /src/usr/include/mach-o/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach-o/loader.h -------------------------------------------------------------------------------- /src/usr/include/mach/arm/_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/arm/_structs.h -------------------------------------------------------------------------------- /src/usr/include/mach/arm/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/arm/boolean.h -------------------------------------------------------------------------------- /src/usr/include/mach/arm/kern_return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/arm/kern_return.h -------------------------------------------------------------------------------- /src/usr/include/mach/arm/thread_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/arm/thread_state.h -------------------------------------------------------------------------------- /src/usr/include/mach/arm/thread_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/arm/thread_status.h -------------------------------------------------------------------------------- /src/usr/include/mach/arm/vm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/arm/vm_types.h -------------------------------------------------------------------------------- /src/usr/include/mach/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/boolean.h -------------------------------------------------------------------------------- /src/usr/include/mach/clock_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/clock_types.h -------------------------------------------------------------------------------- /src/usr/include/mach/i386/_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/i386/_structs.h -------------------------------------------------------------------------------- /src/usr/include/mach/i386/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/i386/boolean.h -------------------------------------------------------------------------------- /src/usr/include/mach/i386/fp_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/i386/fp_reg.h -------------------------------------------------------------------------------- /src/usr/include/mach/i386/kern_return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/i386/kern_return.h -------------------------------------------------------------------------------- /src/usr/include/mach/i386/thread_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/i386/thread_state.h -------------------------------------------------------------------------------- /src/usr/include/mach/i386/thread_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/i386/thread_status.h -------------------------------------------------------------------------------- /src/usr/include/mach/i386/vm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/i386/vm_types.h -------------------------------------------------------------------------------- /src/usr/include/mach/kern_return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/kern_return.h -------------------------------------------------------------------------------- /src/usr/include/mach/machine/_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/machine/_structs.h -------------------------------------------------------------------------------- /src/usr/include/mach/machine/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/machine/boolean.h -------------------------------------------------------------------------------- /src/usr/include/mach/machine/kern_return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/machine/kern_return.h -------------------------------------------------------------------------------- /src/usr/include/mach/machine/thread_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/machine/thread_state.h -------------------------------------------------------------------------------- /src/usr/include/mach/machine/thread_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/machine/thread_status.h -------------------------------------------------------------------------------- /src/usr/include/mach/machine/vm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/machine/vm_types.h -------------------------------------------------------------------------------- /src/usr/include/mach/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/message.h -------------------------------------------------------------------------------- /src/usr/include/mach/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/port.h -------------------------------------------------------------------------------- /src/usr/include/mach/thread_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/thread_status.h -------------------------------------------------------------------------------- /src/usr/include/mach/time_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/time_value.h -------------------------------------------------------------------------------- /src/usr/include/mach/vm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mach/vm_types.h -------------------------------------------------------------------------------- /src/usr/include/machine/_mcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/machine/_mcontext.h -------------------------------------------------------------------------------- /src/usr/include/machine/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/machine/_types.h -------------------------------------------------------------------------------- /src/usr/include/machine/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/machine/endian.h -------------------------------------------------------------------------------- /src/usr/include/machine/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/machine/limits.h -------------------------------------------------------------------------------- /src/usr/include/machine/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/machine/param.h -------------------------------------------------------------------------------- /src/usr/include/machine/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/machine/signal.h -------------------------------------------------------------------------------- /src/usr/include/machine/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/machine/types.h -------------------------------------------------------------------------------- /src/usr/include/malloc/_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/malloc/_malloc.h -------------------------------------------------------------------------------- /src/usr/include/malloc/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/malloc/malloc.h -------------------------------------------------------------------------------- /src/usr/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/math.h -------------------------------------------------------------------------------- /src/usr/include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/memory.h -------------------------------------------------------------------------------- /src/usr/include/monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/monetary.h -------------------------------------------------------------------------------- /src/usr/include/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/monitor.h -------------------------------------------------------------------------------- /src/usr/include/mpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/mpool.h -------------------------------------------------------------------------------- /src/usr/include/ndbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/ndbm.h -------------------------------------------------------------------------------- /src/usr/include/nlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/nlist.h -------------------------------------------------------------------------------- /src/usr/include/os/availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/os/availability.h -------------------------------------------------------------------------------- /src/usr/include/os/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/os/base.h -------------------------------------------------------------------------------- /src/usr/include/os/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/os/clock.h -------------------------------------------------------------------------------- /src/usr/include/os/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/os/object.h -------------------------------------------------------------------------------- /src/usr/include/os/workgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/os/workgroup.h -------------------------------------------------------------------------------- /src/usr/include/os/workgroup_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/os/workgroup_base.h -------------------------------------------------------------------------------- /src/usr/include/os/workgroup_interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/os/workgroup_interval.h -------------------------------------------------------------------------------- /src/usr/include/os/workgroup_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/os/workgroup_object.h -------------------------------------------------------------------------------- /src/usr/include/os/workgroup_parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/os/workgroup_parallel.h -------------------------------------------------------------------------------- /src/usr/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/paths.h -------------------------------------------------------------------------------- /src/usr/include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/poll.h -------------------------------------------------------------------------------- /src/usr/include/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/printf.h -------------------------------------------------------------------------------- /src/usr/include/protocols/routed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/protocols/routed.h -------------------------------------------------------------------------------- /src/usr/include/protocols/rwhod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/protocols/rwhod.h -------------------------------------------------------------------------------- /src/usr/include/protocols/talkd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/protocols/talkd.h -------------------------------------------------------------------------------- /src/usr/include/protocols/timed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/protocols/timed.h -------------------------------------------------------------------------------- /src/usr/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/pthread.h -------------------------------------------------------------------------------- /src/usr/include/pthread/pthread_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/pthread/pthread_impl.h -------------------------------------------------------------------------------- /src/usr/include/pthread/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/pthread/qos.h -------------------------------------------------------------------------------- /src/usr/include/pthread/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/pthread/sched.h -------------------------------------------------------------------------------- /src/usr/include/ranlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/ranlib.h -------------------------------------------------------------------------------- /src/usr/include/readpassphrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/readpassphrase.h -------------------------------------------------------------------------------- /src/usr/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/regex.h -------------------------------------------------------------------------------- /src/usr/include/rune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/rune.h -------------------------------------------------------------------------------- /src/usr/include/runetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/runetype.h -------------------------------------------------------------------------------- /src/usr/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/search.h -------------------------------------------------------------------------------- /src/usr/include/secure/_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/secure/_common.h -------------------------------------------------------------------------------- /src/usr/include/secure/_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/secure/_stdio.h -------------------------------------------------------------------------------- /src/usr/include/secure/_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/secure/_string.h -------------------------------------------------------------------------------- /src/usr/include/secure/_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/secure/_strings.h -------------------------------------------------------------------------------- /src/usr/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/semaphore.h -------------------------------------------------------------------------------- /src/usr/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/setjmp.h -------------------------------------------------------------------------------- /src/usr/include/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sgtty.h -------------------------------------------------------------------------------- /src/usr/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/signal.h -------------------------------------------------------------------------------- /src/usr/include/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/stab.h -------------------------------------------------------------------------------- /src/usr/include/standards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/standards.h -------------------------------------------------------------------------------- /src/usr/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/stdarg.h -------------------------------------------------------------------------------- /src/usr/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/stdbool.h -------------------------------------------------------------------------------- /src/usr/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/stddef.h -------------------------------------------------------------------------------- /src/usr/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/stdint.h -------------------------------------------------------------------------------- /src/usr/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/stdio.h -------------------------------------------------------------------------------- /src/usr/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/stdlib.h -------------------------------------------------------------------------------- /src/usr/include/strhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/strhash.h -------------------------------------------------------------------------------- /src/usr/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/string.h -------------------------------------------------------------------------------- /src/usr/include/stringlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/stringlist.h -------------------------------------------------------------------------------- /src/usr/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/strings.h -------------------------------------------------------------------------------- /src/usr/include/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/struct.h -------------------------------------------------------------------------------- /src/usr/include/sys/_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_endian.h -------------------------------------------------------------------------------- /src/usr/include/sys/_posix_availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_posix_availability.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_attr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_attr_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_cond_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_cond_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_condattr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_condattr_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_key_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_key_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_mutex_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_mutex_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_mutexattr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_mutexattr_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_once_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_once_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_rwlock_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_rwlock_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_rwlockattr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_rwlockattr_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_pthread/_pthread_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_pthread/_pthread_types.h -------------------------------------------------------------------------------- /src/usr/include/sys/_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_select.h -------------------------------------------------------------------------------- /src/usr/include/sys/_symbol_aliasing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_symbol_aliasing.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_blkcnt_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_blkcnt_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_blksize_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_blksize_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_caddr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_caddr_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_clock_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_clock_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_ct_rune_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_ct_rune_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_dev_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_dev_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_errno_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_errno_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fd_clr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fd_clr.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fd_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fd_copy.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fd_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fd_def.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fd_isset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fd_isset.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fd_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fd_set.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fd_setsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fd_setsize.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fd_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fd_zero.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_filesec_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_filesec_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fsblkcnt_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fsblkcnt_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fsfilcnt_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fsfilcnt_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fsid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fsid_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_fsobj_id_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_fsobj_id_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_gid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_gid_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_guid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_guid_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_id_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_id_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_in_addr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_in_addr_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_in_port_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_in_port_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_ino64_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_ino64_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_ino_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_ino_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_int16_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_int16_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_int32_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_int32_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_int64_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_int64_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_int8_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_int8_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_intptr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_intptr_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_iovec_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_iovec_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_key_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_key_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_mach_port_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_mach_port_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_mbstate_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_mbstate_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_mode_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_mode_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_nlink_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_nlink_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_null.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_o_dsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_o_dsync.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_o_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_o_sync.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_off_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_off_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_offsetof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_offsetof.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_os_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_os_inline.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_pid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_pid_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_posix_vdisable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_posix_vdisable.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_ptrdiff_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_ptrdiff_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_rsize_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_rsize_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_rune_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_rune_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_s_ifmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_s_ifmt.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_sa_family_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_sa_family_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_seek_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_seek_set.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_sigaltstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_sigaltstack.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_sigset_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_sigset_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_size_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_size_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_socklen_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_socklen_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_ssize_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_ssize_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_suseconds_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_suseconds_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_time_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_time_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_timespec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_timespec.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_timeval.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_timeval32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_timeval32.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_timeval64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_timeval64.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_u_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_u_char.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_u_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_u_int.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_u_int16_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_u_int16_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_u_int32_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_u_int32_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_u_int64_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_u_int64_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_u_int8_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_u_int8_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_u_short.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_u_short.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_ucontext.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_ucontext64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_ucontext64.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_uid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_uid_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_uintptr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_uintptr_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_useconds_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_useconds_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_uuid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_uuid_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_va_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_va_list.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_wchar_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_wchar_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/_types/_wint_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/_types/_wint_t.h -------------------------------------------------------------------------------- /src/usr/include/sys/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/acl.h -------------------------------------------------------------------------------- /src/usr/include/sys/appleapiopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/appleapiopts.h -------------------------------------------------------------------------------- /src/usr/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/cdefs.h -------------------------------------------------------------------------------- /src/usr/include/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/dirent.h -------------------------------------------------------------------------------- /src/usr/include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/errno.h -------------------------------------------------------------------------------- /src/usr/include/sys/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/event.h -------------------------------------------------------------------------------- /src/usr/include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/fcntl.h -------------------------------------------------------------------------------- /src/usr/include/sys/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/lock.h -------------------------------------------------------------------------------- /src/usr/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/mman.h -------------------------------------------------------------------------------- /src/usr/include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/param.h -------------------------------------------------------------------------------- /src/usr/include/sys/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/proc.h -------------------------------------------------------------------------------- /src/usr/include/sys/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/qos.h -------------------------------------------------------------------------------- /src/usr/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/queue.h -------------------------------------------------------------------------------- /src/usr/include/sys/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/rbtree.h -------------------------------------------------------------------------------- /src/usr/include/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/resource.h -------------------------------------------------------------------------------- /src/usr/include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/select.h -------------------------------------------------------------------------------- /src/usr/include/sys/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/semaphore.h -------------------------------------------------------------------------------- /src/usr/include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/signal.h -------------------------------------------------------------------------------- /src/usr/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/stat.h -------------------------------------------------------------------------------- /src/usr/include/sys/statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/statvfs.h -------------------------------------------------------------------------------- /src/usr/include/sys/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/stdio.h -------------------------------------------------------------------------------- /src/usr/include/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/sysctl.h -------------------------------------------------------------------------------- /src/usr/include/sys/syslimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/syslimits.h -------------------------------------------------------------------------------- /src/usr/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/time.h -------------------------------------------------------------------------------- /src/usr/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/types.h -------------------------------------------------------------------------------- /src/usr/include/sys/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/ucontext.h -------------------------------------------------------------------------------- /src/usr/include/sys/ucred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/ucred.h -------------------------------------------------------------------------------- /src/usr/include/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/unistd.h -------------------------------------------------------------------------------- /src/usr/include/sys/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/vm.h -------------------------------------------------------------------------------- /src/usr/include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sys/wait.h -------------------------------------------------------------------------------- /src/usr/include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/sysexits.h -------------------------------------------------------------------------------- /src/usr/include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/syslog.h -------------------------------------------------------------------------------- /src/usr/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/tar.h -------------------------------------------------------------------------------- /src/usr/include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/termios.h -------------------------------------------------------------------------------- /src/usr/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/time.h -------------------------------------------------------------------------------- /src/usr/include/timeconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/timeconv.h -------------------------------------------------------------------------------- /src/usr/include/ttyent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/ttyent.h -------------------------------------------------------------------------------- /src/usr/include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/ucontext.h -------------------------------------------------------------------------------- /src/usr/include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/ulimit.h -------------------------------------------------------------------------------- /src/usr/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/unistd.h -------------------------------------------------------------------------------- /src/usr/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/util.h -------------------------------------------------------------------------------- /src/usr/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/utime.h -------------------------------------------------------------------------------- /src/usr/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/utmp.h -------------------------------------------------------------------------------- /src/usr/include/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/vis.h -------------------------------------------------------------------------------- /src/usr/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/wchar.h -------------------------------------------------------------------------------- /src/usr/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/wctype.h -------------------------------------------------------------------------------- /src/usr/include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/wordexp.h -------------------------------------------------------------------------------- /src/usr/include/xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/__wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/__wctype.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_ctype.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_inttypes.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_langinfo.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_monetary.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_regex.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_stdio.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_stdlib.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_string.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_time.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_wchar.h -------------------------------------------------------------------------------- /src/usr/include/xlocale/_wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/usr/include/xlocale/_wctype.h -------------------------------------------------------------------------------- /src/x86_64/libSystem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/src/x86_64/libSystem.s -------------------------------------------------------------------------------- /test/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/test/hello.c -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/update.sh -------------------------------------------------------------------------------- /versions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/macos-minimal-sdk/HEAD/versions.inc --------------------------------------------------------------------------------