diff options
author | Bertrik Sikken <bertrik@sikken.nl> | 2008-08-12 21:07:15 +0000 |
---|---|---|
committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-08-12 21:07:15 +0000 |
commit | 9fe4dbf33c74b4cf11e612b24edc4bf6e7ff587d (patch) | |
tree | dbef5428978375773165af997445c985ffdc27ba /apps/plugins | |
parent | ef87933add325b408d7aeeebae6356181556fa98 (diff) | |
download | rockbox-9fe4dbf33c74b4cf11e612b24edc4bf6e7ff587d.tar.gz rockbox-9fe4dbf33c74b4cf11e612b24edc4bf6e7ff587d.zip |
Removed unused abort function implementation
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18261 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/mpegplayer/alloc.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/plugins/mpegplayer/alloc.c b/apps/plugins/mpegplayer/alloc.c index 0feabdbbed..c4f936ee14 100644 --- a/apps/plugins/mpegplayer/alloc.c +++ b/apps/plugins/mpegplayer/alloc.c | |||
@@ -256,11 +256,3 @@ void *memset(void *s, int c, size_t n) | |||
256 | return rb->memset(s,c,n); | 256 | return rb->memset(s,c,n); |
257 | } | 257 | } |
258 | 258 | ||
259 | void abort(void) | ||
260 | { | ||
261 | rb->lcd_putsxy(0,0,"ABORT!"); | ||
262 | rb->lcd_update(); | ||
263 | |||
264 | while (1); | ||
265 | /* Let's hope this is never called */ | ||
266 | } | ||