From 498eaf9a34cb8290021785f5c4beb06319c965e1 Mon Sep 17 00:00:00 2001 From: auronandace Date: Mon, 8 Jun 2026 12:20:46 +0100 Subject: [PATCH] verify wctype header includes --- src/header/wctype/cbindgen.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/header/wctype/cbindgen.toml b/src/header/wctype/cbindgen.toml index bd9cdd85a4..5463e6422e 100644 --- a/src/header/wctype/cbindgen.toml +++ b/src/header/wctype/cbindgen.toml @@ -1,3 +1,12 @@ +# POSIX header spec: https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/wctype.h.html +# +# Spec quotations relating to includes: +# - "wint_t As described in ." +# - "The header shall define the locale_t type as described in ." +# - "WEOF As described in ." +# - "Inclusion of the header may make visible all symbols from the headers , , , , , , , and ." +# +# wchar.h brings in time.h which brings in bits/locale.h for locale_t sys_includes = ["wchar.h" ] include_guard = "_RELIBC_WCTYPE_H" language = "C"