1
0
Fork 0
forked from len0rd/rockbox

Removed unused abort function implementation

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18261 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2008-08-12 21:07:15 +00:00
parent ef87933add
commit 9fe4dbf33c
2 changed files with 0 additions and 15 deletions

View file

@ -29,13 +29,6 @@ struct mad_stream stream IBSS_ATTR;
struct mad_frame frame IBSS_ATTR;
struct mad_synth synth IBSS_ATTR;
/* The following function is used inside libmad - let's hope it's never
called.
*/
void abort(void) {
}
#define INPUT_CHUNK_SIZE 8192
mad_fixed_t mad_frame_overlap[2][32][18] IBSS_ATTR;

View file

@ -256,11 +256,3 @@ void *memset(void *s, int c, size_t n)
return rb->memset(s,c,n);
}
void abort(void)
{
rb->lcd_putsxy(0,0,"ABORT!");
rb->lcd_update();
while (1);
/* Let's hope this is never called */
}