Merge branch 'verify-syswait-includes' into 'master'

verify sys_wait header includes

See merge request redox-os/relibc!1275
This commit is contained in:
Jeremy Soller
2026-05-06 06:18:15 -06:00
+7 -1
View File
@@ -1,4 +1,10 @@
sys_includes = ["sys/types.h", "sys/resource.h"]
# POSIX header spec: https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/sys_wait.h.html
#
# Spec quotations relating to includes:
# - "The <sys/wait.h> header shall define the id_t and pid_t types as described in <sys/types.h>."
# - "The <sys/wait.h> header shall define the siginfo_t type and the sigval union as described in <signal.h>."
# - "Inclusion of the <sys/wait.h> header may also make visible all symbols from <signal.h>."
sys_includes = ["sys/types.h", "signal.h"]
include_guard = "_RELIBC_SYS_WAIT_H"
after_includes = """