diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-08-07 21:40:41 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-08-07 21:40:41 -0700 |
commit | abca512937091e35608a2a5531aaf73da56f503f (patch) | |
tree | 0c2734c382d4d6e262010dbd771207d748c507be | |
parent | 23cfdb2ec63dac74147d54e9131cf0f1fdc1668d (diff) | |
download | txr-abca512937091e35608a2a5531aaf73da56f503f.tar.gz txr-abca512937091e35608a2a5531aaf73da56f503f.tar.bz2 txr-abca512937091e35608a2a5531aaf73da56f503f.zip |
* stream.c: Include <wctype.h> header for iswprint.
Needed on Cygwin.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | stream.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2015-08-07 Kaz Kylheku <kaz@kylheku.com> + * stream.c: Include <wctype.h> header for iswprint. + Needed on Cygwin. + +2015-08-07 Kaz Kylheku <kaz@kylheku.com> + * sysif.c (w_lstat): If we don't have S_IFLINK, implement w_lstat as an alias to w_stat. This helps build on MinGW. @@ -33,6 +33,7 @@ #include <errno.h> #include <ctype.h> #include <wchar.h> +#include <wctype.h> #include <signal.h> #include "config.h" #if HAVE_UNISTD_H |