tests W32: include process.h for getpid()

At least, MinGW has POSIX names. No idea if this works in MSVC.
This commit is contained in:
Руслан Ижбулатов 2018-09-20 05:20:24 +00:00 committed by Xavier Claessens
parent 190ea6ed10
commit d2c9543f2e

View File

@ -25,6 +25,9 @@
#ifdef G_OS_UNIX
#include <unistd.h>
#endif
#ifdef G_OS_WIN32
#include <process.h>
#endif
static gchar *dir, *filename, *displayname, *childname;