From 542e2950af03b44adb8153677c16763c9119ae56 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 10 Mar 2009 04:46:40 -0400 Subject: Normalized some #ifdef's to #if defined --- src/system.hh.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/system.hh.in b/src/system.hh.in index a121e7ba..2358ddcd 100644 --- a/src/system.hh.in +++ b/src/system.hh.in @@ -107,7 +107,7 @@ typedef std::ostream::pos_type ostream_pos_type; #endif #include -#ifdef WIN32 +#if defined(WIN32) #include #else #include @@ -116,7 +116,7 @@ typedef std::ostream::pos_type ostream_pos_type; #include #endif -#ifdef HAVE_UNIX_PIPES +#if defined(HAVE_UNIX_PIPES) #include #include #include "fdstream.h" @@ -133,7 +133,7 @@ typedef std::ostream::pos_type ostream_pos_type; #include "sha1.h" #include "utf8.h" -#ifdef HAVE_LIBEDIT +#if defined(HAVE_LIBEDIT) #include #endif -- cgit v1.2.3