mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 02:57:38 +00:00
Bug 1012415 - Explicitly include <unistd.h> for _exit() on XP_UNIX. r=josh
This commit is contained in:
parent
9006215f4c
commit
25a111b07e
@ -9,11 +9,16 @@
|
||||
#include "GMPVideoHost.h"
|
||||
#include "nsIFile.h"
|
||||
#include "nsXULAppAPI.h"
|
||||
#include <stdlib.h>
|
||||
#include "gmp-video-decode.h"
|
||||
#include "gmp-video-encode.h"
|
||||
#include "GMPPlatform.h"
|
||||
|
||||
#ifdef XP_WIN
|
||||
#include <stdlib.h> // for _exit()
|
||||
#else
|
||||
#include <unistd.h> // for _exit()
|
||||
#endif
|
||||
|
||||
namespace mozilla {
|
||||
namespace gmp {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user