Fix stdlib.h not defininng wchar_t

This commit is contained in:
bumbread 2022-08-13 02:19:13 +11:00
parent 0c9875c53c
commit 7de01d66f2
1 changed files with 2 additions and 0 deletions

View File

@ -23,8 +23,10 @@
#if defined(_WIN32)
typedef unsigned long long size_t;
typedef unsigned short wchar_t;
#else
typedef unsigned long size_t;
typedef int wchar_t;
#endif
typedef struct div_t {