* libwget/random.c: Include process.h on Windows

This commit is contained in:
Tim Rühsen
2017-03-21 12:56:45 +01:00
parent 13371152f8
commit cd88f68f44

View File

@ -33,6 +33,9 @@
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#ifdef _WIN32
# include <process.h> /* getpid() */
#endif
#include <wget.h>
#include "private.h"