diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-02-28 18:32:57 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-02-28 18:32:57 +0000 |
| commit | 399c081f939943f8a9b3f967fed6fd333a23ce22 (patch) | |
| tree | c547873bda201c42a72bf12d91eb0f2962734d37 /apps/plugin.c | |
| parent | 00dd42a7135e4cadf49158e97ded8f9357941044 (diff) | |
| download | rockbox-399c081f939943f8a9b3f967fed6fd333a23ce22.zip rockbox-399c081f939943f8a9b3f967fed6fd333a23ce22.tar.gz rockbox-399c081f939943f8a9b3f967fed6fd333a23ce22.tar.bz2 rockbox-399c081f939943f8a9b3f967fed6fd333a23ce22.tar.xz | |
Simulators: lseek() working again for systems with an off_t datatype differing from 'long' (cygwin/x11, maybe others). Removed unused sim_close().
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6084 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index f8f8fb1..6b429c3 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -135,7 +135,7 @@ static const struct plugin_api rockbox_api = { (open_func)PREFIX(open), close, (read_func)read, - lseek, + PREFIX(lseek), (creat_func)PREFIX(creat), (write_func)write, PREFIX(remove), |