diff options
author | John Wiegley <johnw@newartisans.com> | 2009-03-10 04:46:40 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-03-10 04:46:40 -0400 |
commit | 542e2950af03b44adb8153677c16763c9119ae56 (patch) | |
tree | c21a4d27f2ccc0cefcec0c42c3e8056fd6f0f80e /src/system.hh.in | |
parent | a982af13f39d560d2a64828dde4c2601ccf0ea01 (diff) | |
download | fork-ledger-542e2950af03b44adb8153677c16763c9119ae56.tar.gz fork-ledger-542e2950af03b44adb8153677c16763c9119ae56.tar.bz2 fork-ledger-542e2950af03b44adb8153677c16763c9119ae56.zip |
Normalized some #ifdef's to #if defined
Diffstat (limited to 'src/system.hh.in')
-rw-r--r-- | src/system.hh.in | 6 |
1 files 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 <sys/stat.h> -#ifdef WIN32 +#if defined(WIN32) #include <io.h> #else #include <unistd.h> @@ -116,7 +116,7 @@ typedef std::ostream::pos_type ostream_pos_type; #include <pwd.h> #endif -#ifdef HAVE_UNIX_PIPES +#if defined(HAVE_UNIX_PIPES) #include <sys/types.h> #include <sys/wait.h> #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 <editline/readline.h> #endif |