Kaydet (Commit) 54aab71f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

On Windows, #include <process.h> for getpid

Change-Id: Ibfb52800cdde99298431dab9da1cb8109658c425
üst 35196c32
...@@ -16,8 +16,13 @@ ...@@ -16,8 +16,13 @@
#include <clang/Frontend/FrontendPluginRegistry.h> #include <clang/Frontend/FrontendPluginRegistry.h>
#include <clang/Lex/PPCallbacks.h> #include <clang/Lex/PPCallbacks.h>
#include <stdio.h> #include <stdio.h>
#if defined _WIN32
#include <process.h>
#else
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#endif
/* /*
This source file manages all plugin actions. It is not necessary to modify this This source file manages all plugin actions. It is not necessary to modify this
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment