Bug 936196 - Explicitly include unistd.h for getpid() on XP_UNIX. r=BenWa

This commit is contained in:
Jaroslav Kopecký 2013-11-08 09:04:30 -05:00
parent 8e00ee4e31
commit be4abc046a

View File

@ -18,6 +18,8 @@
#ifdef XP_WIN
#include <process.h>
#define getpid _getpid
#else
#include <unistd.h>
#endif
#include "nsXULAppAPI.h"