Add functions for determining if the stdin/out/err is connected to a
[oota-llvm.git] / lib / System / TimeValue.cpp
index 68778a5e44d97c2c1725281baea1623010d91f08..64078f6f42064417b89af18311e0872a8d3d4d4e 100644 (file)
 //
 //===----------------------------------------------------------------------===//
 
-#include <llvm/System/TimeValue.h>
+#include "llvm/System/TimeValue.h"
+#include "llvm/Config/config.h"
 
 namespace llvm {
 using namespace sys;
 
-const TimeValue TimeValue::MinTime             = TimeValue ( INT64_MIN,0 );
-const TimeValue TimeValue::MaxTime             = TimeValue ( INT64_MAX,0 );
-const TimeValue TimeValue::ZeroTime            = TimeValue ( 0,0 );
-const TimeValue TimeValue::PosixZeroTime       = TimeValue ( -946684800,0 );
-const TimeValue TimeValue::Win32ZeroTime       = TimeValue ( -12591158400ULL,0 );
+const TimeValue TimeValue::MinTime       = TimeValue ( INT64_MIN,0 );
+const TimeValue TimeValue::MaxTime       = TimeValue ( INT64_MAX,0 );
+const TimeValue TimeValue::ZeroTime      = TimeValue ( 0,0 );
+const TimeValue TimeValue::PosixZeroTime = TimeValue ( -946684800,0 );
+const TimeValue TimeValue::Win32ZeroTime = TimeValue ( -12591158400ULL,0 );
 
 void
 TimeValue::normalize( void ) {
@@ -48,6 +49,11 @@ TimeValue::normalize( void ) {
 }
 
 /// Include the platform specific portion of TimeValue class
-#include "platform/TimeValue.cpp"
+#ifdef LLVM_ON_UNIX
+#include "Unix/TimeValue.cpp"
+#endif
+#ifdef LLVM_ON_WIN32
+#include "Win32/TimeValue.cpp"
+#endif
 
 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab