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:
arcum42 2008-10-26 10:51:00 +00:00 committed by Gregory Hainaut
parent 4c7550971e
commit c9e333b4d5
1 changed files with 4 additions and 0 deletions

View File

@ -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]