launcher: Fix build with mingw-w64

execv() requires process.h to be included according to the MSVC documentation
but for some reason it also works without it.

mingw-w64 on the other hand fails to build the launcher if the include isn't there,
so add it.
This commit is contained in:
Christoph Reiter 2019-06-13 18:31:57 +02:00
parent 8aeff6b2c9
commit fa22b42d9f
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@
#include <windows.h>
#include <tchar.h>
#include <fcntl.h>
#include <process.h>
int child_pid=0;