summaryrefslogtreecommitdiff
path: root/apps/codecs/libFLAC/bitbuffer.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-02-28 20:55:31 +0000
committerJens Arnold <amiconn@rockbox.org>2005-02-28 20:55:31 +0000
commitb363d656252eed5720e9f172dafa7b56ac66a994 (patch)
tree0e42dd388ea71cd83ee40b5007bb813cd1946dad /apps/codecs/libFLAC/bitbuffer.c
parentc080f7e19e96a88e9711417ac039f082b11f2655 (diff)
downloadrockbox-b363d656252eed5720e9f172dafa7b56ac66a994.zip
rockbox-b363d656252eed5720e9f172dafa7b56ac66a994.tar.gz
rockbox-b363d656252eed5720e9f172dafa7b56ac66a994.tar.bz2
rockbox-b363d656252eed5720e9f172dafa7b56ac66a994.tar.xz
Get malloc() and friends out of the way for the cygwin linker (and maybe others), to make plugins work properly in the simulator.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6086 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libFLAC/bitbuffer.c')
-rw-r--r--apps/codecs/libFLAC/bitbuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libFLAC/bitbuffer.c b/apps/codecs/libFLAC/bitbuffer.c
index 552a326..fa9786e 100644
--- a/apps/codecs/libFLAC/bitbuffer.c
+++ b/apps/codecs/libFLAC/bitbuffer.c
@@ -29,7 +29,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <stdlib.h> /* for malloc() */
+#include "global.h" /* for malloc() */
#include <string.h> /* for memcpy(), memset() */
#include "private/bitbuffer.h"
#include "private/bitmath.h"