summaryrefslogtreecommitdiff
path: root/apps/codecs/lib/xxx2wav.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/lib/xxx2wav.h')
-rw-r--r--apps/codecs/lib/xxx2wav.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/codecs/lib/xxx2wav.h b/apps/codecs/lib/xxx2wav.h
index 2c9a73729c..e1e76078f2 100644
--- a/apps/codecs/lib/xxx2wav.h
+++ b/apps/codecs/lib/xxx2wav.h
@@ -46,9 +46,13 @@ extern unsigned char* filebuf; // The rest of the MP3 buffer
46 46
47void* codec_malloc(size_t size); 47void* codec_malloc(size_t size);
48void* codec_calloc(size_t nmemb, size_t size); 48void* codec_calloc(size_t nmemb, size_t size);
49void* codec_alloca(size_t size);
50void* codec_realloc(void* ptr, size_t size); 49void* codec_realloc(void* ptr, size_t size);
51void codec_free(void* ptr); 50void codec_free(void* ptr);
51
52#if defined(SIMULATOR)
53void* codec_alloca(size_t size);
54#endif
55
52size_t strlen(const char *s); 56size_t strlen(const char *s);
53char *strcpy(char *dest, const char *src); 57char *strcpy(char *dest, const char *src);
54char *strcat(char *dest, const char *src); 58char *strcat(char *dest, const char *src);