diff options
author | Jens Arnold <amiconn@rockbox.org> | 2005-02-28 20:55:31 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2005-02-28 20:55:31 +0000 |
commit | b363d656252eed5720e9f172dafa7b56ac66a994 (patch) | |
tree | 0e42dd388ea71cd83ee40b5007bb813cd1946dad /apps/codecs/libFLAC/format.c | |
parent | c080f7e19e96a88e9711417ac039f082b11f2655 (diff) |
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/format.c')
-rw-r--r-- | apps/codecs/libFLAC/format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libFLAC/format.c b/apps/codecs/libFLAC/format.c index 25ec7d98b6..ebc3fb2240 100644 --- a/apps/codecs/libFLAC/format.c +++ b/apps/codecs/libFLAC/format.c @@ -30,7 +30,7 @@ */ #include <stdio.h> -#include <stdlib.h> /* for qsort() */ +#include "global.h" /* for qsort() */ #include "FLAC/assert.h" #include "FLAC/format.h" #include "private/format.h" |