From 6445537c848d99484ead0a10386f8a774147ed06 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 29 May 2008 22:02:08 +0000 Subject: Unbreak build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51709 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Unix/Program.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/System/Unix/Program.inc') diff --git a/lib/System/Unix/Program.inc b/lib/System/Unix/Program.inc index 182e14db09..d0dade1f8c 100644 --- a/lib/System/Unix/Program.inc +++ b/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); -- cgit v1.2.3