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 | 18261164a1aa6fe36b299d714e45fdb8687482fb (patch) | |
tree | 9c0d351d7ae3c1aca78e9ab1691abf825c2b76be /llvm/utils | |
parent | 9b155475a813bdb236eec5f65a0dc1fb01bc0bae (diff) | |
download | bcm5719-llvm-18261164a1aa6fe36b299d714e45fdb8687482fb.tar.gz bcm5719-llvm-18261164a1aa6fe36b299d714e45fdb8687482fb.zip |
KillTheDoctor.cpp: Restore Win32 SDK headers before r169251.
llvm-svn: 169255
Diffstat (limited to 'llvm/utils')
-rw-r--r-- | llvm/utils/KillTheDoctor/KillTheDoctor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/utils/KillTheDoctor/KillTheDoctor.cpp b/llvm/utils/KillTheDoctor/KillTheDoctor.cpp index 03834586bcf..239c7920053 100644 --- a/llvm/utils/KillTheDoctor/KillTheDoctor.cpp +++ b/llvm/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; |