From 6abcb0de9bb951c784d5cb1e2ecb8e6b2112dff0 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 93261373fc..a7c76c0158 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;