forked from len0rd/rockbox
typecast the five functions that still make a simulator produce compiler
warnings git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4119 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e15ac75ea0
commit
b062547747
1 changed files with 5 additions and 5 deletions
|
@ -108,12 +108,12 @@ static struct plugin_api rockbox_api = {
|
||||||
button_get_w_tmo,
|
button_get_w_tmo,
|
||||||
|
|
||||||
/* file */
|
/* file */
|
||||||
PREFIX(open),
|
(open_func)PREFIX(open),
|
||||||
PREFIX(close),
|
PREFIX(close),
|
||||||
read,
|
(read_func)read,
|
||||||
lseek,
|
lseek,
|
||||||
PREFIX(creat),
|
(creat_func)PREFIX(creat),
|
||||||
write,
|
(write_func)write,
|
||||||
remove,
|
remove,
|
||||||
rename,
|
rename,
|
||||||
ftruncate,
|
ftruncate,
|
||||||
|
@ -149,7 +149,7 @@ static struct plugin_api rockbox_api = {
|
||||||
srand,
|
srand,
|
||||||
rand,
|
rand,
|
||||||
splash,
|
splash,
|
||||||
qsort,
|
(qsort_func)qsort,
|
||||||
kbd_input,
|
kbd_input,
|
||||||
mpeg_current_track,
|
mpeg_current_track,
|
||||||
atoi,
|
atoi,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue