From 9cfdac50f17d6723b26779c99ba0579d3341ca2f Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 29 May 2008 22:02:08 +0000 Subject: [PATCH] Unbreak build. llvm-svn: 51709 --- llvm/lib/System/Unix/Program.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/lib/System/Unix/Program.inc b/llvm/lib/System/Unix/Program.inc index 182e14db096f..d0dade1f8cad 100644 --- a/llvm/lib/System/Unix/Program.inc +++ b/llvm/lib/System/Unix/Program.inc @@ -17,8 +17,8 @@ //===----------------------------------------------------------------------===// #include -#include #include "Unix.h" +#include #if HAVE_SYS_STAT_H #include #endif @@ -210,8 +210,8 @@ Program::ExecuteAndWait(const Path& path, } // Make sure stderr and stdout have been flushed - cerr.flush(); - cout.flush(); + std::cerr << std::flush; + std::cout << std::flush; fsync(1); fsync(2);