aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/ncurses/patches/200-fix_missing_include.patch
blob: 4616c4fb7026205b2f7c7dad8f16f33888d535bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/ncurses/curses.priv.h
+++ b/ncurses/curses.priv.h
@@ -55,6 +55,11 @@ extern "C" {
 
 #include <ncurses_cfg.h>
 
+#if NEED_WCHAR_H
+#include <stdarg.h>
+#include <wchar.h>
+#endif
+
 #if USE_RCS_IDS
 #define MODULE_ID(id) static const char Ident[] = id;
 #else