Merge branch 'stdio-systypes' into 'master'

remove sys_types from stdio header

See merge request redox-os/relibc!1314
This commit is contained in:
Jeremy Soller
2026-05-12 06:26:44 -06:00
+6 -1
View File
@@ -1,4 +1,9 @@
sys_includes = ["stdarg.h", "stddef.h", "stdint.h", "sys/types.h", "features.h"]
# stddef.h brings in size_t
sys_includes = ["stdarg.h", "stddef.h", "stdint.h", "features.h"]
after_includes = """
#include <bits/off-t.h> // for off_t from sys/types.h
#include <bits/ssize-t.h> // for ssize_t from sys/types.h
"""
include_guard = "_RELIBC_STDIO_H"
trailer = """
#ifndef _RELIBC_BITS_STDIO_H