mirror of
https://github.com/libretro/RetroArch
synced 2025-02-22 12:40:09 +00:00
(Blackberry) S_ISDIR would be broken if left undefined on Blackberry -
figure out what the deal is here
This commit is contained in:
parent
63020f42d7
commit
ddd6acd4e2
@ -24,8 +24,10 @@
|
|||||||
|
|
||||||
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__) || defined(__BLACKBERRY_QNX__)
|
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__) || defined(__BLACKBERRY_QNX__)
|
||||||
#include <unistd.h> //stat() is defined here
|
#include <unistd.h> //stat() is defined here
|
||||||
|
#ifndef __BLACKBERRY_QNX__
|
||||||
#define S_ISDIR(x) (x & CELL_FS_S_IFDIR)
|
#define S_ISDIR(x) (x & CELL_FS_S_IFDIR)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef _XBOX
|
#ifdef _XBOX
|
||||||
#include <xtl.h>
|
#include <xtl.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user