Commit f10cbaa8 authored by Christian Hesse's avatar Christian Hesse
Browse files

include wctype.h for iswprint()

parent 8f07868f
...@@ -29,6 +29,10 @@ in the source distribution for its full text. ...@@ -29,6 +29,10 @@ in the source distribution for its full text.
#include <curses.h> #include <curses.h>
#endif #endif
#ifdef HAVE_LIBNCURSESW
#include <wctype.h>
#endif
#define RichString_size(this) ((this)->chlen) #define RichString_size(this) ((this)->chlen)
#define RichString_sizeVal(this) ((this).chlen) #define RichString_sizeVal(this) ((this).chlen)
......
...@@ -27,6 +27,10 @@ in the source distribution for its full text. ...@@ -27,6 +27,10 @@ in the source distribution for its full text.
#include <curses.h> #include <curses.h>
#endif #endif
#ifdef HAVE_LIBNCURSESW
#include <wctype.h>
#endif
#define RichString_size(this) ((this)->chlen) #define RichString_size(this) ((this)->chlen)
#define RichString_sizeVal(this) ((this).chlen) #define RichString_sizeVal(this) ((this).chlen)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment