summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2011-08-28 22:53:40 +0000
committerMichael Sevakis <jethead71@rockbox.org>2011-08-28 22:53:40 +0000
commite137e9e47f71683ed753c942b53474c55d3f4069 (patch)
tree2c0ef2458823e779ccd581fac7db5c8be7df2419
parent91ba09b099170cbb4b2249301db1539531dd9367 (diff)
downloadrockbox-e137e9e47f71683ed753c942b53474c55d3f4069.tar.gz
rockbox-e137e9e47f71683ed753c942b53474c55d3f4069.zip
codec_main() prototype inside codec_crt0.c is no longer needed since it's in codecs.h now.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30373 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/codec_crt0.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/codecs/codec_crt0.c b/apps/codecs/codec_crt0.c
index 33876272c6..50a2d8b66a 100644
--- a/apps/codecs/codec_crt0.c
+++ b/apps/codecs/codec_crt0.c
@@ -27,8 +27,6 @@ struct codec_api *ci DATA_ATTR;
27extern unsigned char plugin_bss_start[]; 27extern unsigned char plugin_bss_start[];
28extern unsigned char plugin_end_addr[]; 28extern unsigned char plugin_end_addr[];
29 29
30extern enum codec_status codec_main(enum codec_entry_call_reason reason);
31
32/* stub, the entry point is called via its reference in __header to 30/* stub, the entry point is called via its reference in __header to
33 * avoid warning with certain compilers */ 31 * avoid warning with certain compilers */
34int _start(void) {return 0;} 32int _start(void) {return 0;}