diff options
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/codec_crt0.c | 4 | ||||
| -rw-r--r-- | apps/codecs/libwavpack/wavpack.h | 2 |
2 files changed, 6 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) diff --git a/apps/codecs/libwavpack/wavpack.h b/apps/codecs/libwavpack/wavpack.h index 5b5385a..ee7c969 100644 --- a/apps/codecs/libwavpack/wavpack.h +++ b/apps/codecs/libwavpack/wavpack.h @@ -16,7 +16,9 @@ typedef unsigned char uchar; typedef unsigned short ushort; +#if 0 // unused and causing compiler errrors typedef unsigned int uint; +#endif #include <stdio.h> |