[PATCH] D51913: [libFuzzer] [Windows] Include windows.h and psapi.h with lowercase

Martin Storsjö via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 11 02:16:38 PDT 2018


mstorsjo updated this revision to Diff 164824.
mstorsjo edited the summary of this revision.
mstorsjo added a comment.

Updated to use angle brackets for including system headers.


https://reviews.llvm.org/D51913

Files:
  lib/fuzzer/FuzzerExtFunctionsDlsymWin.cpp
  lib/fuzzer/FuzzerUtilWindows.cpp


Index: lib/fuzzer/FuzzerUtilWindows.cpp
===================================================================
--- lib/fuzzer/FuzzerUtilWindows.cpp
+++ lib/fuzzer/FuzzerUtilWindows.cpp
@@ -24,7 +24,7 @@
 #include <windows.h>
 
 // This must be included after windows.h.
-#include <Psapi.h>
+#include <psapi.h>
 
 namespace fuzzer {
 
Index: lib/fuzzer/FuzzerExtFunctionsDlsymWin.cpp
===================================================================
--- lib/fuzzer/FuzzerExtFunctionsDlsymWin.cpp
+++ lib/fuzzer/FuzzerExtFunctionsDlsymWin.cpp
@@ -13,10 +13,10 @@
 
 #include "FuzzerExtFunctions.h"
 #include "FuzzerIO.h"
-#include "Windows.h"
+#include <windows.h>
 
 // This must be included after Windows.h.
-#include "Psapi.h"
+#include <psapi.h>
 
 namespace fuzzer {
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D51913.164824.patch
Type: text/x-patch
Size: 771 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180911/3b8def56/attachment.bin>


More information about the llvm-commits mailing list