diff options
Diffstat (limited to 'apps/codecs/codec_crt0.c')
| -rw-r--r-- | apps/codecs/codec_crt0.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/codecs/codec_crt0.c b/apps/codecs/codec_crt0.c index dd0f99f..c680030 100644 --- a/apps/codecs/codec_crt0.c +++ b/apps/codecs/codec_crt0.c @@ -34,6 +34,10 @@ extern unsigned char plugin_end_addr[]; extern enum codec_status codec_main(void); +/* stub, the entry point is called via its reference in __header to + * avoid warning with certain compilers */ +int _start(void) {return 0;} + enum codec_status codec_start(void) { #if (CONFIG_PLATFORM & PLATFORM_NATIVE) |