diff options
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/charset.c b/src/charset.c index 94ed2c6f4f..b88682b88a 100644 --- a/src/charset.c +++ b/src/charset.c @@ -4,6 +4,7 @@ #include <string.h> #include <wctype.h> +#include <wchar.h> // for towupper() and towlower() #include "vim.h" #include "charset.h" @@ -19,9 +20,6 @@ static int win_chartabsize(win_T *wp, char_u *p, colnr_T col); -#if defined(HAVE_WCHAR_H) -# include <wchar.h> // for towupper() and towlower() -#endif // if defined(HAVE_WCHAR_H) static int win_nolbr_chartabsize(win_T *wp, char_u *s, colnr_T col, int *headp); |