xref: /aosp_15_r20/external/coreboot/payloads/libpayload/include/wchar.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 #ifndef _WCHAR_H
2 #define _WCHAR_H
3 
4 #include <stddef.h>
5 
6 #ifndef __WINT_TYPE__
7 # define __WINT_TYPE__ unsigned int
8 #endif
9 typedef __WINT_TYPE__ wint_t;
10 
11 #endif
12