mirror of https://github.com/PCSX2/pcsx2.git
Fix Linux compilation as of r237
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@239 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
4c7550971e
commit
c9e333b4d5
|
@ -23,6 +23,10 @@
|
|||
#include <malloc.h>
|
||||
#include <assert.h>
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
// compile-time assert
|
||||
#ifndef C_ASSERT
|
||||
#define C_ASSERT(e) typedef char __C_ASSERT__[(e)?1:-1]
|
||||
|
|
Loading…
Reference in New Issue