summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-23 14:51:49 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-23 14:51:49 +0000
commit80c31c9ea0c4beb52e223141a1b2fb5e2e2e64b4 (patch)
tree8d7c3bd3d75cedf78a5a79643aa145244d4f3702 /apps/plugin.c
parent12bf7f39b1f9ab5cb60a467f934557fce65b1ddb (diff)
downloadrockbox-80c31c9ea0c4beb52e223141a1b2fb5e2e2e64b4.tar.gz
rockbox-80c31c9ea0c4beb52e223141a1b2fb5e2e2e64b4.zip
The simulator has to use the sim_ versions of remove() and rename()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4923 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 20d1697d6e..93302f31e4 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -125,8 +125,8 @@ static const struct plugin_api rockbox_api = {
125 lseek, 125 lseek,
126 (creat_func)PREFIX(creat), 126 (creat_func)PREFIX(creat),
127 (write_func)write, 127 (write_func)write,
128 remove, 128 PREFIX(remove),
129 rename, 129 PREFIX(rename),
130 ftruncate, 130 ftruncate,
131 PREFIX(filesize), 131 PREFIX(filesize),
132 fprintf, 132 fprintf,