1
0
Fork 0
forked from len0rd/rockbox
foxbox/apps/codecs/Tremor/config-tremor.h
Jens Arnold b363d65625 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
2005-02-28 20:55:31 +00:00

11 lines
189 B
C

#include "../codec.h"
#define BIG_ENDIAN 1
#define LITTLE_ENDIAN 0
#define _LOW_ACCURACY_
#ifdef SIMULATOR
#define BYTE_ORDER LITTLE_ENDIAN
#else
#define BYTE_ORDER BIG_ENDIAN
#endif