diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-12-04 11:34:27 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-12-04 11:34:27 +0000 |
commit | 30cd56bc56b4a3cc3fdc207134d4db1e84d0a2a0 (patch) | |
tree | 6440987aa7b4afc9282a75f4fbafae398706afaa /utils/KillTheDoctor | |
parent | 183797ed24d24f6dad3755e37e6053d60916dd5f (diff) | |
download | external_llvm-30cd56bc56b4a3cc3fdc207134d4db1e84d0a2a0.zip external_llvm-30cd56bc56b4a3cc3fdc207134d4db1e84d0a2a0.tar.gz external_llvm-30cd56bc56b4a3cc3fdc207134d4db1e84d0a2a0.tar.bz2 |
KillTheDoctor.cpp: Restore Win32 SDK headers before r169251.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169255 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/KillTheDoctor')
-rw-r--r-- | utils/KillTheDoctor/KillTheDoctor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/KillTheDoctor/KillTheDoctor.cpp b/utils/KillTheDoctor/KillTheDoctor.cpp index 0383458..239c792 100644 --- a/utils/KillTheDoctor/KillTheDoctor.cpp +++ b/utils/KillTheDoctor/KillTheDoctor.cpp @@ -47,13 +47,13 @@ #include <cerrno> #include <cstdlib> #include <map> -#include <psapi.h> #include <string> // This includes must be last. -#include <Dbghelp.h> -#include <WinError.h> #include <Windows.h> +#include <WinError.h> +#include <Dbghelp.h> +#include <psapi.h> using namespace llvm; |