From bdf57c4e2c847d6916315dce207621838801630a Mon Sep 17 00:00:00 2001 From: robs Date: Mon, 25 Feb 2002 00:46:17 +0000 Subject: [PATCH] use #if instead of #ifdef --- examples/echo-cpp.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/echo-cpp.cpp b/examples/echo-cpp.cpp index e2d63f7..e6fd8f9 100644 --- a/examples/echo-cpp.cpp +++ b/examples/echo-cpp.cpp @@ -1,7 +1,7 @@ /* * A simple FastCGI application example in C++. * - * $Id: echo-cpp.cpp,v 1.9 2002/02/24 20:08:09 robs Exp $ + * $Id: echo-cpp.cpp,v 1.10 2002/02/25 00:46:17 robs Exp $ * * Copyright (c) 2001 Rob Saccoccio and Chelsea Networks * All rights reserved. @@ -119,7 +119,7 @@ int main (void) fcgi_streambuf cout_fcgi_streambuf(request.out); fcgi_streambuf cerr_fcgi_streambuf(request.err); -#ifdef HAVE_IOSTREAM_WITHASSIGN_STREAMBUF +#if HAVE_IOSTREAM_WITHASSIGN_STREAMBUF cin = &cin_fcgi_streambuf; cout = &cout_fcgi_streambuf; cerr = &cerr_fcgi_streambuf; @@ -161,7 +161,7 @@ int main (void) // have to be flushed here. } -#ifdef HAVE_IOSTREAM_WITHASSIGN_STREAMBUF +#if HAVE_IOSTREAM_WITHASSIGN_STREAMBUF cin = cin_streambuf; cout = cout_streambuf; cerr = cerr_streambuf; -- 2.11.4.GIT