Don't redirect file IO to app_* for __PCTOOLS__ builds.

Change-Id: Id8c2d277d4f393cb1bf32654dbd1a21730fd8269
This commit is contained in:
Frank Gevaerts 2012-03-03 18:08:40 +01:00
parent 8eb36cfe85
commit 71953a4266

View file

@ -37,7 +37,7 @@
#define MAX_OPEN_FILES 11
#if !defined(PLUGIN) && !defined(CODEC)
#if defined(APPLICATION)
#if defined(APPLICATION) && !defined(__PCTOOL__)
# define open(x, ...) app_open(x, __VA_ARGS__)
# define creat(x,m) app_creat(x, m)
# define remove(x) app_remove(x)