1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

plAgeLoader needs unistd for getpid.

This commit is contained in:
Darryl Pogue
2011-10-28 23:15:41 -07:00
parent f33589936c
commit 2160df9cd3

View File

@ -46,7 +46,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
//#include "hsTimer.h"
#include "plResPatcher.h"
#include "plBackgroundDownloader.h"
#include "process.h" // for getpid()
#if HS_BUILD_FOR_WIN32
# include "process.h" // for getpid()
#else
# include <unistd.h>
#endif
#include "pnProduct/pnProduct.h"