replace sys_types include in regex header with bits

This commit is contained in:
auronandace
2026-05-09 08:30:02 +01:00
parent 3caae5a009
commit aa52ed1bcc
+4 -1
View File
@@ -2,7 +2,10 @@
#
# Spec quotations relating to includes:
# - "The <regex.h> header shall define the size_t type as described in <sys/types.h>."
sys_includes = ["sys/types.h"]
sys_includes = []
after_includes = """
#include <bits/size-t.h> // for size_t from sys/types.h
"""
include_guard = "_RELIBC_REGEX_H"
language = "C"
style = "Type"