diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 22:07:04 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 22:07:04 +0000 |
commit | fb9aac85cd42d893b79efe29fc3a01af7bad178a (patch) | |
tree | d5f45e6edeab97aa23980e0941b66847b22b9dc5 /lib/System/Linux/TimeValue.cpp | |
parent | 44cbf36c38b41028b7d25ca3032f14597897f4c9 (diff) |
Include the correct implementation file
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17778 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Linux/TimeValue.cpp')
-rw-r--r-- | lib/System/Linux/TimeValue.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/System/Linux/TimeValue.cpp b/lib/System/Linux/TimeValue.cpp index b58cf82fe0..d9745cc72d 100644 --- a/lib/System/Linux/TimeValue.cpp +++ b/lib/System/Linux/TimeValue.cpp @@ -12,10 +12,12 @@ //===----------------------------------------------------------------------===// // Include the generic Unix implementation -#include "../Unix/Unix.h" +#include "../Unix/TimeValue.cpp" + #include <sys/time.h> namespace llvm { + using namespace sys; //===----------------------------------------------------------------------===// |