mirror of https://github.com/xzeldon/htop.git
Merge pull request #248 from eworm-de/wctype
include wctype.h for iswprint()
This commit is contained in:
commit
f3a9f5406b
|
@ -29,6 +29,10 @@ in the source distribution for its full text.
|
|||
#include <curses.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_LIBNCURSESW
|
||||
#include <wctype.h>
|
||||
#endif
|
||||
|
||||
#define RichString_size(this) ((this)->chlen)
|
||||
#define RichString_sizeVal(this) ((this).chlen)
|
||||
|
||||
|
|
|
@ -27,6 +27,10 @@ in the source distribution for its full text.
|
|||
#include <curses.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_LIBNCURSESW
|
||||
#include <wctype.h>
|
||||
#endif
|
||||
|
||||
#define RichString_size(this) ((this)->chlen)
|
||||
#define RichString_sizeVal(this) ((this).chlen)
|
||||
|
||||
|
|
Loading…
Reference in New Issue