Remove attribution from file headers, per discussion on llvmdev.
[oota-llvm.git] / lib / System / TimeValue.cpp
index 68778a5e44d97c2c1725281baea1623010d91f08..cf4984cc4d1b36b44ff5ded56fc77ba423f3bc1b 100644 (file)
@@ -1,26 +1,27 @@
 //===-- TimeValue.cpp - Implement OS TimeValue Concept ----------*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the 
-// University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
 //===----------------------------------------------------------------------===//
 //
 //  This file implements the operating system TimeValue concept.
 //
 //===----------------------------------------------------------------------===//
 
-#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,10 @@ TimeValue::normalize( void ) {
 }
 
 /// Include the platform specific portion of TimeValue class
-#include "platform/TimeValue.cpp"
+#ifdef LLVM_ON_UNIX
+#include "Unix/TimeValue.inc"
+#endif
+#ifdef LLVM_ON_WIN32
+#include "Win32/TimeValue.inc"
+#endif
 
-// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab