summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2012-03-03 19:10:51 +0100
committerFrank Gevaerts <frank@gevaerts.be>2012-03-03 19:10:51 +0100
commit105a05cbfb68e88b5b89ddcc345906d80081210f (patch)
treef4d0ab18d861f6dbd067aff06ca440a40db59fdc
parent52724c1beddd14cb274ed983a8f1b997f5c7befe (diff)
downloadrockbox-105a05cbfb68e88b5b89ddcc345906d80081210f.tar.gz
rockbox-105a05cbfb68e88b5b89ddcc345906d80081210f.zip
One more *_filesize() to remove
Change-Id: I82884712a660ad91c0e5c329ca0f8488edec21c8
-rw-r--r--apps/plugin.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index db05894c10..5406610e23 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -93,11 +93,6 @@ static int app_ftruncate(int fd, off_t length)
93{ 93{
94 return ftruncate(fd,length); 94 return ftruncate(fd,length);
95} 95}
96
97static off_t app_filesize(int fd)
98{
99 return filesize(fd);
100}
101#endif 96#endif
102 97
103#if defined(HAVE_PLUGIN_CHECK_OPEN_CLOSE) && (MAX_OPEN_FILES>32) 98#if defined(HAVE_PLUGIN_CHECK_OPEN_CLOSE) && (MAX_OPEN_FILES>32)