libc: Define wint_t in wchar.h

This commit is contained in:
apio 2022-11-09 16:29:33 +01:00
parent 078f3f5862
commit 2ac98ed0c1

View File

@ -0,0 +1,11 @@
#ifndef _WCHAR_H
#define _WCHAR_H
#include <stddef.h>
#ifndef __WINT_TYPE__
#define __WINT_TYPE__ unsigned int
#endif
typedef __WINT_TYPE__ wint_t;
#endif