From 9443eef518f0e43fe3c2c69d0d7e48db8b7cb299 Mon Sep 17 00:00:00 2001 From: Robin Randhawa Date: Sun, 3 Mar 2019 21:42:32 +0000 Subject: [PATCH] Add wint_t definition to stddef.h Without this the relibc tests would break. With this the relibc tests pass and formerly breaking builds (such as uutils -> onig_sys) pass. --- include/stddef.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/stddef.h b/include/stddef.h index 0ee2d47174..d9fbabd932 100644 --- a/include/stddef.h +++ b/include/stddef.h @@ -7,6 +7,7 @@ typedef signed long long ptrdiff_t; typedef int32_t wchar_t; +typedef int32_t wint_t; typedef unsigned long long size_t;