1
0
Fork 0
forked from len0rd/rockbox

make init() a void always, this should heal the build again

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@984 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-12 18:00:32 +00:00
parent 4a3824425e
commit 6682c03de5

View file

@ -64,7 +64,7 @@ void init(void)
extern int poolstart[];
extern int poolend[];
int init(void)
void init(void)
{
int rc;
struct partinfo* pinfo;
@ -97,8 +97,6 @@ int init(void)
button_init();
mpeg_init();
return 0;
}
int main(void)