diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2024-07-11 11:48:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-11 11:48:20 +0200 |
commit | 5dfdd28292c8e28b787eecd475c585a3fa2e379c (patch) | |
tree | f5ab0f14b5f9f445c7d556ba6a1e16d12e75bebd /src/wcwidth.h | |
parent | c832d2b857d4174d17247de837426d4cfc95ec2f (diff) | |
download | luasystem-5dfdd28292c8e28b787eecd475c585a3fa2e379c.tar.gz luasystem-5dfdd28292c8e28b787eecd475c585a3fa2e379c.tar.bz2 luasystem-5dfdd28292c8e28b787eecd475c585a3fa2e379c.zip |
fix(term): headers on yet another MinGW version (#30)
Diffstat (limited to '')
-rw-r--r-- | src/wcwidth.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wcwidth.h b/src/wcwidth.h index f2fee11..6cb6f6d 100644 --- a/src/wcwidth.h +++ b/src/wcwidth.h | |||
@@ -9,6 +9,7 @@ | |||
9 | 9 | ||
10 | #ifdef _WIN32 | 10 | #ifdef _WIN32 |
11 | #include <stdint.h> | 11 | #include <stdint.h> |
12 | #include <stddef.h> | ||
12 | typedef uint32_t mk_wchar_t; // Windows wchar_t can be 16-bit, we need 32-bit | 13 | typedef uint32_t mk_wchar_t; // Windows wchar_t can be 16-bit, we need 32-bit |
13 | #else | 14 | #else |
14 | #include <wchar.h> | 15 | #include <wchar.h> |