From aa52ed1bcc1b129d0d78325d44ded916da99d4ca Mon Sep 17 00:00:00 2001 From: auronandace Date: Sat, 9 May 2026 08:30:02 +0100 Subject: [PATCH] replace sys_types include in regex header with bits --- src/header/regex/cbindgen.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/header/regex/cbindgen.toml b/src/header/regex/cbindgen.toml index fa1c711c04..8c3b2a54e0 100644 --- a/src/header/regex/cbindgen.toml +++ b/src/header/regex/cbindgen.toml @@ -2,7 +2,10 @@ # # Spec quotations relating to includes: # - "The header shall define the size_t type as described in ." -sys_includes = ["sys/types.h"] +sys_includes = [] +after_includes = """ +#include // for size_t from sys/types.h +""" include_guard = "_RELIBC_REGEX_H" language = "C" style = "Type"