diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-15 04:47:22 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-15 04:47:22 +0000 |
commit | a79a99a1dc761cd302c8e6ec0a5c521a9d6bf267 (patch) | |
tree | cfbee8888e6679a2e6b06f72d60d90eb5aade58d | |
parent | 82bec2cff0c753f551a570361d1da5bd9f48f309 (diff) |
Actually get the #include correct so it compiles .. duh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17817 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/System/AIX/TimeValue.cpp | 2 | ||||
-rw-r--r-- | lib/System/Cygwin/TimeValue.cpp | 2 | ||||
-rw-r--r-- | lib/System/Darwin/TimeValue.cpp | 2 | ||||
-rw-r--r-- | lib/System/FreeBSD/TimeValue.cpp | 4 | ||||
-rw-r--r-- | lib/System/Interix/TimeValue.cpp | 2 | ||||
-rw-r--r-- | lib/System/Linux/TimeValue.cpp | 2 | ||||
-rw-r--r-- | lib/System/SunOS/TimeValue.cpp | 2 | ||||
-rw-r--r-- | lib/System/Win32/TimeValue.cpp | 2 | ||||
-rw-r--r-- | lib/System/Win32/TimeValue.inc | 2 |
9 files changed, 10 insertions, 10 deletions
diff --git a/lib/System/AIX/TimeValue.cpp b/lib/System/AIX/TimeValue.cpp index 42975ad209..f04a605b72 100644 --- a/lib/System/AIX/TimeValue.cpp +++ b/lib/System/AIX/TimeValue.cpp @@ -12,7 +12,7 @@ //===----------------------------------------------------------------------===// // Include the generic Unix implementation -#include "../Unix/Unix.cpp" +#include "../Unix/TimeValue.cpp" namespace llvm { using namespace sys; diff --git a/lib/System/Cygwin/TimeValue.cpp b/lib/System/Cygwin/TimeValue.cpp index aaee13a1e3..85a0e4d4dc 100644 --- a/lib/System/Cygwin/TimeValue.cpp +++ b/lib/System/Cygwin/TimeValue.cpp @@ -12,7 +12,7 @@ //===----------------------------------------------------------------------===// // Include the generic Unix implementation -#include "../Unix/Unix.cpp" +#include "../Unix/TimeValue.cpp" namespace llvm { using namespace sys; diff --git a/lib/System/Darwin/TimeValue.cpp b/lib/System/Darwin/TimeValue.cpp index 0791f443ae..357260babc 100644 --- a/lib/System/Darwin/TimeValue.cpp +++ b/lib/System/Darwin/TimeValue.cpp @@ -12,7 +12,7 @@ //===----------------------------------------------------------------------===// // Include the generic Unix implementation -#include "../Unix/Unix.cpp" +#include "../Unix/TimeValue.cpp" namespace llvm { using namespace sys; diff --git a/lib/System/FreeBSD/TimeValue.cpp b/lib/System/FreeBSD/TimeValue.cpp index bade838777..f2177b0c73 100644 --- a/lib/System/FreeBSD/TimeValue.cpp +++ b/lib/System/FreeBSD/TimeValue.cpp @@ -7,12 +7,12 @@ // //===----------------------------------------------------------------------===// // -// This file provides the FreeBSD specific implementation of the TimeValue class. +// This file provides the FreeBSD implementation of the TimeValue class. // //===----------------------------------------------------------------------===// // Include the generic Unix implementation -#include "../Unix/Unix.cpp" +#include "../Unix/TimeValue.cpp" namespace llvm { using namespace sys; diff --git a/lib/System/Interix/TimeValue.cpp b/lib/System/Interix/TimeValue.cpp index 60c7e0668e..db30d38592 100644 --- a/lib/System/Interix/TimeValue.cpp +++ b/lib/System/Interix/TimeValue.cpp @@ -12,7 +12,7 @@ //===----------------------------------------------------------------------===// // Include the generic Unix implementation -#include "../Unix/Unix.cpp" +#include "../Unix/TimeValue.cpp" namespace llvm { using namespace sys; diff --git a/lib/System/Linux/TimeValue.cpp b/lib/System/Linux/TimeValue.cpp index 8f52770e3a..8c3db5d299 100644 --- a/lib/System/Linux/TimeValue.cpp +++ b/lib/System/Linux/TimeValue.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// // -// This file provides the Linux specific implementation of the TimeValue class. +// This file provides the Linux implementation of the TimeValue class. // //===----------------------------------------------------------------------===// diff --git a/lib/System/SunOS/TimeValue.cpp b/lib/System/SunOS/TimeValue.cpp index a4a238ba53..82c76b0fea 100644 --- a/lib/System/SunOS/TimeValue.cpp +++ b/lib/System/SunOS/TimeValue.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// // -// This file provides the SunOS specific implementation of the TimeValue class. +// This file provides the SunOS implementation of the TimeValue class. // //===----------------------------------------------------------------------===// diff --git a/lib/System/Win32/TimeValue.cpp b/lib/System/Win32/TimeValue.cpp index 7ec2b39548..433b948748 100644 --- a/lib/System/Win32/TimeValue.cpp +++ b/lib/System/Win32/TimeValue.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// // -// This file provides the Win32 specific implementation of the TimeValue class. +// This file provides the Win32 implementation of the TimeValue class. // //===----------------------------------------------------------------------===// diff --git a/lib/System/Win32/TimeValue.inc b/lib/System/Win32/TimeValue.inc index 7ec2b39548..433b948748 100644 --- a/lib/System/Win32/TimeValue.inc +++ b/lib/System/Win32/TimeValue.inc @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// // -// This file provides the Win32 specific implementation of the TimeValue class. +// This file provides the Win32 implementation of the TimeValue class. // //===----------------------------------------------------------------------===// |