diff options
author | Douglas Gregor <dgregor@apple.com> | 2013-03-25 21:51:16 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2013-03-25 21:51:16 +0000 |
commit | 87ab066c70006d998a6d358d272e00c8345b0f26 (patch) | |
tree | 1dceea9140e753087cbc23545d4eb4d5e9459bea /lib/Frontend | |
parent | 5d835266d5f147b7a2d4cff2e6909f1a837bb951 (diff) |
Use <time.h> rather than <sys/time.h>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177924 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend')
-rw-r--r-- | lib/Frontend/CompilerInstance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/CompilerInstance.cpp b/lib/Frontend/CompilerInstance.cpp index 2a35ca0794..4c4d603716 100644 --- a/lib/Frontend/CompilerInstance.cpp +++ b/lib/Frontend/CompilerInstance.cpp @@ -45,7 +45,7 @@ #include "llvm/Support/raw_ostream.h" #include "llvm/Support/system_error.h" #include <sys/stat.h> -#include <sys/time.h> +#include <time.h> using namespace clang; |