From d821012eed025a9f27315952b91c1e6f00673784 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 2 Jun 2023 17:10:29 +0300 Subject: [PATCH] LibC: mbstate_t is empty struct --- libc/include/wchar.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libc/include/wchar.h b/libc/include/wchar.h index 93261373..a7c76c01 100644 --- a/libc/include/wchar.h +++ b/libc/include/wchar.h @@ -17,8 +17,7 @@ __BEGIN_DECLS #include -struct __mbstate_t; -typedef struct __mbstate_t mbstate_t; +typedef struct {} mbstate_t; typedef int wctype_t;