1
0
Fork 0
forked from len0rd/rockbox

Sync Speex to SVN. Add new header file to adapt to Speex' new way of doing wrapper functions.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15209 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2007-10-19 21:10:25 +00:00
parent 6dc3a743ad
commit 56db559754
29 changed files with 639 additions and 673 deletions

View file

@ -36,11 +36,15 @@
#define STACK_ALLOC_H
#ifdef USE_ALLOCA
#ifdef WIN32
#include <malloc.h>
#else
#include <alloca.h>
#endif
# ifdef WIN32
# include <malloc.h>
# else
# ifdef HAVE_ALLOCA_H
# include <alloca.h>
# else
# include <stdlib.h>
# endif
# endif
#endif
/**