diff options
Diffstat (limited to 'apps/codecs/lib')
| -rw-r--r-- | apps/codecs/lib/xxx2wav.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/codecs/lib/xxx2wav.c b/apps/codecs/lib/xxx2wav.c index 1323e07..b437ca5 100644 --- a/apps/codecs/lib/xxx2wav.c +++ b/apps/codecs/lib/xxx2wav.c @@ -91,11 +91,7 @@ int memcmp(const void *s1, const void *s2, size_t n) { } void* memchr(const void *s, int c, size_t n) { - /* TO DO: Implement for Tremor */ - (void)s; - (void)c; - (void)n; - return(NULL); + return(local_rb->memchr(s,c,n)); } void* memmove(const void *s1, const void *s2, size_t n) { |