From c5cf38fffec9b7e0a96cc3f016c3a01820498953 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 1 Sep 2025 21:39:10 +0900 Subject: feat: support signed/unsigned specifier --- include/stdarg.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'include/stdarg.h') diff --git a/include/stdarg.h b/include/stdarg.h index 1d448f8..fdc0b80 100644 --- a/include/stdarg.h +++ b/include/stdarg.h @@ -7,10 +7,8 @@ // Version 1.0 // Figure 3.34: va_list Type Declaration struct __ducc_va_list { - // unsigned int gp_offset; - // unsigned int fp_offset; - int gp_offset; - int fp_offset; + unsigned int gp_offset; + unsigned int fp_offset; void* overflow_arg_area; void* reg_save_area; }; -- cgit v1.2.3-70-g09d2