From: David Lawrence Ramsey Date: Thu, 23 Dec 2004 21:32:27 +0000 (+0000) Subject: #ifdef fixes X-Git-Tag: v1.3.6~207 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=93c4a5656b909491c85b9c8cd9b35882a1c39afb;p=nano.git #ifdef fixes git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2195 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/utils.c b/src/utils.c index 75c8765a..3a38b264 100644 --- a/src/utils.c +++ b/src/utils.c @@ -33,7 +33,7 @@ #include "proto.h" #include "nano.h" -#ifdef HAVE_WCHAR_H +#if defined(HAVE_WCHAR_H) && defined(NANO_WIDE) #include #endif diff --git a/src/winio.c b/src/winio.c index fb990b90..bea1680b 100644 --- a/src/winio.c +++ b/src/winio.c @@ -32,7 +32,7 @@ #include "proto.h" #include "nano.h" -#ifdef HAVE_WCHAR_H +#if defined(HAVE_WCHAR_H) && defined(NANO_WIDE) #include #endif