Normalized some #ifdef's to #if defined

This commit is contained in:
John Wiegley 2009-03-10 04:46:40 -04:00
parent a982af13f3
commit 542e2950af

View file

@ -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