From aaf2e492cca7bc5fa897c5b15776caa81543ab7b Mon Sep 17 00:00:00 2001 From: Wildan M Date: Mon, 18 May 2026 17:11:40 +0700 Subject: [PATCH] Include ssize_t for limits.h --- src/header/limits/cbindgen.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/header/limits/cbindgen.toml b/src/header/limits/cbindgen.toml index bd3b52720e..8d03b1ee3f 100644 --- a/src/header/limits/cbindgen.toml +++ b/src/header/limits/cbindgen.toml @@ -2,6 +2,9 @@ # # There are no spec quotations relating to includes sys_includes = [] +after_includes = """ +#include // for ssize_t from sys/types.h +""" include_guard = "_RELIBC_LIMITS_H" language = "C" style = "Tag"