1
0
Fork 0
forked from len0rd/rockbox

iriver: more codec library cleanup: remove codec_alloca and a some extraneous defines.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7637 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Magnus Holmgren 2005-10-17 18:46:46 +00:00
parent 69ffcd5356
commit 37011258d6
4 changed files with 1 additions and 32 deletions

View file

@ -75,15 +75,6 @@ void* codec_calloc(size_t nmemb, size_t size)
return(x);
}
#if defined(SIMULATOR)
void* codec_alloca(size_t size)
{
void* x;
x = codec_malloc(size);
return(x);
}
#endif
void codec_free(void* ptr) {
(void)ptr;
}