From 8c6d4505329f94446084ca93eae10cd796d79a8d Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 26 Jan 2019 22:41:05 -0500 Subject: new framework for building sources after gitlab migration --- nonstd/stubs/wchar.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 nonstd/stubs/wchar.h (limited to 'nonstd/stubs/wchar.h') diff --git a/nonstd/stubs/wchar.h b/nonstd/stubs/wchar.h new file mode 100644 index 00000000..0bdc95cb --- /dev/null +++ b/nonstd/stubs/wchar.h @@ -0,0 +1,9 @@ +#include +#define WEOF (-1L) +typedef int mbstate_t; +typedef int wint_t; +size_t mbrlen(const char * restrict, size_t, mbstate_t * restrict); +size_t mbsrtowcs(wchar_t * restrict, const char * restrict, size_t, mbstate_t * restrict); +size_t mbrtowc(wchar_t * restrict, const char * restrict, size_t, mbstate_t * restrict); +size_t wcrtomb(char * restrict, wchar_t, mbstate_t * restrict); +wint_t btowc(int); -- cgit v1.2.1