From 71953a42666101c2ea9a124f94c9dffe5f94b89a Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Sat, 3 Mar 2012 18:08:40 +0100 Subject: Don't redirect file IO to app_* for __PCTOOLS__ builds. Change-Id: Id8c2d277d4f393cb1bf32654dbd1a21730fd8269 --- firmware/include/file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'firmware/include') diff --git a/firmware/include/file.h b/firmware/include/file.h index 4835450..ac856ed 100644 --- a/firmware/include/file.h +++ b/firmware/include/file.h @@ -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) -- cgit v1.1