├── .github └── workflows │ └── makefile.yml ├── .gitignore ├── LICENSE.md ├── Makefile ├── Makefile.regen ├── README.md ├── compat_arc4random.c ├── compat_b64_ntop.c ├── compat_blowfish.c ├── compat_crypt_newhash.c ├── compat_err.c ├── compat_explicit_bzero.c ├── compat_fts.c ├── compat_getprogname.c ├── compat_md5.c ├── compat_memmem.c ├── compat_memrchr.c ├── compat_mkfifoat.c ├── compat_mknodat.c ├── compat_readpassphrase.c ├── compat_reallocarray.c ├── compat_recallocarray.c ├── compat_scan_scaled.c ├── compat_setresgid.c ├── compat_setresuid.c ├── compat_sha2.c ├── compat_strlcat.c ├── compat_strlcpy.c ├── compat_strndup.c ├── compat_strnlen.c ├── compat_strtonum.c ├── compat_timingsafe_bcmp.c ├── compats.c ├── configure ├── configure-fts.h ├── configure-sys_queue.h ├── configure-sys_tree.h ├── configure.in ├── expected ├── config-dragonflybsd.h ├── config-freebsd.h ├── config-linux.h ├── config-linux_libbsd.h ├── config-macos.h ├── config-netbsd.h └── config-omnios.h ├── index.xml ├── regress ├── INFTIM.c ├── PASSWORD_LEN.c ├── PATH_MAX.c ├── SOCK_NONBLOCK.c ├── WAIT_ANY.c ├── arc4random.c ├── b64_ntop.c ├── blowfish.c ├── capsicum.c ├── crypt.c ├── crypt_newhash.c ├── endian.c ├── err.c ├── explicit_bzero.c ├── fts.c ├── getprogname.c ├── md5.c ├── memmem.c ├── memrchr.c ├── minor.c ├── mkfifoat.c ├── mknodat.c ├── pledge.c ├── reallocarray.c ├── recallocarray.c ├── scan_scaled.c ├── setresgid.c ├── setresuid.c ├── sha2.c ├── strlcat.c ├── strlcpy.c ├── strndup.c ├── strnlen.c ├── strtonum.c ├── sys_queue.c ├── systrace.c ├── termios.c ├── timingsafe_bcmp.c └── unveil.c ├── test-INFTIM.c ├── test-PASSWORD_LEN.c ├── test-PATH_MAX.c ├── test-SOCK_NONBLOCK.c ├── test-WAIT_ANY.c ├── test-__progname.c ├── test-arc4random.c ├── test-b64_ntop.c ├── test-blowfish.c ├── test-capsicum.c ├── test-crypt.c ├── test-crypt_newhash.c ├── test-endian_h.c ├── test-err.c ├── test-explicit_bzero.c ├── test-fts.c ├── test-getexecname.c ├── test-getprogname.c ├── test-landlock.c ├── test-lib_socket.c ├── test-md5.c ├── test-memmem.c ├── test-memrchr.c ├── test-memset_s.c ├── test-mkfifoat.c ├── test-mknodat.c ├── test-osbyteorder_h.c ├── test-pledge.c ├── test-program_invocation_short_name.c ├── test-readpassphrase.c ├── test-reallocarray.c ├── test-recallocarray.c ├── test-sandbox_init.c ├── test-scan_scaled.c ├── test-seccomp_filter.c ├── test-setresgid.c ├── test-setresuid.c ├── test-sha2.c ├── test-static.c ├── test-strlcat.c ├── test-strlcpy.c ├── test-strndup.c ├── test-strnlen.c ├── test-strtonum.c ├── test-sys_byteorder_h.c ├── test-sys_endian_h.c ├── test-sys_mkdev_h.c ├── test-sys_queue.c ├── test-sys_sysmacros_h.c ├── test-sys_tree.c ├── test-termios.c ├── test-timingsafe_bcmp.c ├── test-unveil.c ├── tests.c └── versions.md /.github/workflows/makefile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/.github/workflows/makefile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/Makefile.regen -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/README.md -------------------------------------------------------------------------------- /compat_arc4random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_arc4random.c -------------------------------------------------------------------------------- /compat_b64_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_b64_ntop.c -------------------------------------------------------------------------------- /compat_blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_blowfish.c -------------------------------------------------------------------------------- /compat_crypt_newhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_crypt_newhash.c -------------------------------------------------------------------------------- /compat_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_err.c -------------------------------------------------------------------------------- /compat_explicit_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_explicit_bzero.c -------------------------------------------------------------------------------- /compat_fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_fts.c -------------------------------------------------------------------------------- /compat_getprogname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_getprogname.c -------------------------------------------------------------------------------- /compat_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_md5.c -------------------------------------------------------------------------------- /compat_memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_memmem.c -------------------------------------------------------------------------------- /compat_memrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_memrchr.c -------------------------------------------------------------------------------- /compat_mkfifoat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_mkfifoat.c -------------------------------------------------------------------------------- /compat_mknodat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_mknodat.c -------------------------------------------------------------------------------- /compat_readpassphrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_readpassphrase.c -------------------------------------------------------------------------------- /compat_reallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_reallocarray.c -------------------------------------------------------------------------------- /compat_recallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_recallocarray.c -------------------------------------------------------------------------------- /compat_scan_scaled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_scan_scaled.c -------------------------------------------------------------------------------- /compat_setresgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_setresgid.c -------------------------------------------------------------------------------- /compat_setresuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_setresuid.c -------------------------------------------------------------------------------- /compat_sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_sha2.c -------------------------------------------------------------------------------- /compat_strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_strlcat.c -------------------------------------------------------------------------------- /compat_strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_strlcpy.c -------------------------------------------------------------------------------- /compat_strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_strndup.c -------------------------------------------------------------------------------- /compat_strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_strnlen.c -------------------------------------------------------------------------------- /compat_strtonum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_strtonum.c -------------------------------------------------------------------------------- /compat_timingsafe_bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compat_timingsafe_bcmp.c -------------------------------------------------------------------------------- /compats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/compats.c -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/configure -------------------------------------------------------------------------------- /configure-fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/configure-fts.h -------------------------------------------------------------------------------- /configure-sys_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/configure-sys_queue.h -------------------------------------------------------------------------------- /configure-sys_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/configure-sys_tree.h -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/configure.in -------------------------------------------------------------------------------- /expected/config-dragonflybsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/expected/config-dragonflybsd.h -------------------------------------------------------------------------------- /expected/config-freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/expected/config-freebsd.h -------------------------------------------------------------------------------- /expected/config-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/expected/config-linux.h -------------------------------------------------------------------------------- /expected/config-linux_libbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/expected/config-linux_libbsd.h -------------------------------------------------------------------------------- /expected/config-macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/expected/config-macos.h -------------------------------------------------------------------------------- /expected/config-netbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/expected/config-netbsd.h -------------------------------------------------------------------------------- /expected/config-omnios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/expected/config-omnios.h -------------------------------------------------------------------------------- /index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/index.xml -------------------------------------------------------------------------------- /regress/INFTIM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/INFTIM.c -------------------------------------------------------------------------------- /regress/PASSWORD_LEN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/PASSWORD_LEN.c -------------------------------------------------------------------------------- /regress/PATH_MAX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/PATH_MAX.c -------------------------------------------------------------------------------- /regress/SOCK_NONBLOCK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/SOCK_NONBLOCK.c -------------------------------------------------------------------------------- /regress/WAIT_ANY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/WAIT_ANY.c -------------------------------------------------------------------------------- /regress/arc4random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/arc4random.c -------------------------------------------------------------------------------- /regress/b64_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/b64_ntop.c -------------------------------------------------------------------------------- /regress/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/blowfish.c -------------------------------------------------------------------------------- /regress/capsicum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/capsicum.c -------------------------------------------------------------------------------- /regress/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/crypt.c -------------------------------------------------------------------------------- /regress/crypt_newhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/crypt_newhash.c -------------------------------------------------------------------------------- /regress/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/endian.c -------------------------------------------------------------------------------- /regress/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/err.c -------------------------------------------------------------------------------- /regress/explicit_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/explicit_bzero.c -------------------------------------------------------------------------------- /regress/fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/fts.c -------------------------------------------------------------------------------- /regress/getprogname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/getprogname.c -------------------------------------------------------------------------------- /regress/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/md5.c -------------------------------------------------------------------------------- /regress/memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/memmem.c -------------------------------------------------------------------------------- /regress/memrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/memrchr.c -------------------------------------------------------------------------------- /regress/minor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/minor.c -------------------------------------------------------------------------------- /regress/mkfifoat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/mkfifoat.c -------------------------------------------------------------------------------- /regress/mknodat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/mknodat.c -------------------------------------------------------------------------------- /regress/pledge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/pledge.c -------------------------------------------------------------------------------- /regress/reallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/reallocarray.c -------------------------------------------------------------------------------- /regress/recallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/recallocarray.c -------------------------------------------------------------------------------- /regress/scan_scaled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/scan_scaled.c -------------------------------------------------------------------------------- /regress/setresgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/setresgid.c -------------------------------------------------------------------------------- /regress/setresuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/setresuid.c -------------------------------------------------------------------------------- /regress/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/sha2.c -------------------------------------------------------------------------------- /regress/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/strlcat.c -------------------------------------------------------------------------------- /regress/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/strlcpy.c -------------------------------------------------------------------------------- /regress/strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/strndup.c -------------------------------------------------------------------------------- /regress/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/strnlen.c -------------------------------------------------------------------------------- /regress/strtonum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/strtonum.c -------------------------------------------------------------------------------- /regress/sys_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/sys_queue.c -------------------------------------------------------------------------------- /regress/systrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/systrace.c -------------------------------------------------------------------------------- /regress/termios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/termios.c -------------------------------------------------------------------------------- /regress/timingsafe_bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/timingsafe_bcmp.c -------------------------------------------------------------------------------- /regress/unveil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/regress/unveil.c -------------------------------------------------------------------------------- /test-INFTIM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-INFTIM.c -------------------------------------------------------------------------------- /test-PASSWORD_LEN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-PASSWORD_LEN.c -------------------------------------------------------------------------------- /test-PATH_MAX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-PATH_MAX.c -------------------------------------------------------------------------------- /test-SOCK_NONBLOCK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-SOCK_NONBLOCK.c -------------------------------------------------------------------------------- /test-WAIT_ANY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-WAIT_ANY.c -------------------------------------------------------------------------------- /test-__progname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-__progname.c -------------------------------------------------------------------------------- /test-arc4random.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | return (arc4random() + 1) ? 0 : 1; 7 | } 8 | -------------------------------------------------------------------------------- /test-b64_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-b64_ntop.c -------------------------------------------------------------------------------- /test-blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-blowfish.c -------------------------------------------------------------------------------- /test-capsicum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-capsicum.c -------------------------------------------------------------------------------- /test-crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-crypt.c -------------------------------------------------------------------------------- /test-crypt_newhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-crypt_newhash.c -------------------------------------------------------------------------------- /test-endian_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-endian_h.c -------------------------------------------------------------------------------- /test-err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-err.c -------------------------------------------------------------------------------- /test-explicit_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-explicit_bzero.c -------------------------------------------------------------------------------- /test-fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-fts.c -------------------------------------------------------------------------------- /test-getexecname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-getexecname.c -------------------------------------------------------------------------------- /test-getprogname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-getprogname.c -------------------------------------------------------------------------------- /test-landlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-landlock.c -------------------------------------------------------------------------------- /test-lib_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-lib_socket.c -------------------------------------------------------------------------------- /test-md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-md5.c -------------------------------------------------------------------------------- /test-memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-memmem.c -------------------------------------------------------------------------------- /test-memrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-memrchr.c -------------------------------------------------------------------------------- /test-memset_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-memset_s.c -------------------------------------------------------------------------------- /test-mkfifoat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-mkfifoat.c -------------------------------------------------------------------------------- /test-mknodat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-mknodat.c -------------------------------------------------------------------------------- /test-osbyteorder_h.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | return !OSSwapHostToLittleInt32(23); 7 | } 8 | -------------------------------------------------------------------------------- /test-pledge.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | return !!pledge("stdio", NULL); 7 | } 8 | -------------------------------------------------------------------------------- /test-program_invocation_short_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-program_invocation_short_name.c -------------------------------------------------------------------------------- /test-readpassphrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-readpassphrase.c -------------------------------------------------------------------------------- /test-reallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-reallocarray.c -------------------------------------------------------------------------------- /test-recallocarray.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | return !recallocarray(NULL, 0, 2, 2); 7 | } 8 | -------------------------------------------------------------------------------- /test-sandbox_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-sandbox_init.c -------------------------------------------------------------------------------- /test-scan_scaled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-scan_scaled.c -------------------------------------------------------------------------------- /test-seccomp_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-seccomp_filter.c -------------------------------------------------------------------------------- /test-setresgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-setresgid.c -------------------------------------------------------------------------------- /test-setresuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-setresuid.c -------------------------------------------------------------------------------- /test-sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-sha2.c -------------------------------------------------------------------------------- /test-static.c: -------------------------------------------------------------------------------- 1 | int 2 | main(void) 3 | { 4 | return 0; /* not meant to do anything */ 5 | } 6 | -------------------------------------------------------------------------------- /test-strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-strlcat.c -------------------------------------------------------------------------------- /test-strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-strlcpy.c -------------------------------------------------------------------------------- /test-strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-strndup.c -------------------------------------------------------------------------------- /test-strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-strnlen.c -------------------------------------------------------------------------------- /test-strtonum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-strtonum.c -------------------------------------------------------------------------------- /test-sys_byteorder_h.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | return !LE_32(23); 7 | } 8 | -------------------------------------------------------------------------------- /test-sys_endian_h.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | return !htole32(23); 7 | } 8 | -------------------------------------------------------------------------------- /test-sys_mkdev_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-sys_mkdev_h.c -------------------------------------------------------------------------------- /test-sys_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-sys_queue.c -------------------------------------------------------------------------------- /test-sys_sysmacros_h.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | return !minor(0); 7 | } 8 | -------------------------------------------------------------------------------- /test-sys_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-sys_tree.c -------------------------------------------------------------------------------- /test-termios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-termios.c -------------------------------------------------------------------------------- /test-timingsafe_bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-timingsafe_bcmp.c -------------------------------------------------------------------------------- /test-unveil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/test-unveil.c -------------------------------------------------------------------------------- /tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/tests.c -------------------------------------------------------------------------------- /versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristapsdz/oconfigure/HEAD/versions.md --------------------------------------------------------------------------------