summaryrefslogtreecommitdiff
path: root/apps/codecs/libwavpack/wavpack.h
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2005-02-25 17:19:32 +0000
committerChristian Gmeiner <christian.gmeiner@gmail.com>2005-02-25 17:19:32 +0000
commitc3e55c01a53f005b8f6042755a83bb7059f98e7b (patch)
tree2c3f7f99844f852a52283ce6df8614e513910c49 /apps/codecs/libwavpack/wavpack.h
parente449d88b3e6b584998f8f38ed61467c35ca74466 (diff)
downloadrockbox-c3e55c01a53f005b8f6042755a83bb7059f98e7b.tar.gz
rockbox-c3e55c01a53f005b8f6042755a83bb7059f98e7b.zip
changes to compile without warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6057 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwavpack/wavpack.h')
-rw-r--r--apps/codecs/libwavpack/wavpack.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/codecs/libwavpack/wavpack.h b/apps/codecs/libwavpack/wavpack.h
index af9d88dfe6..98dba8631b 100644
--- a/apps/codecs/libwavpack/wavpack.h
+++ b/apps/codecs/libwavpack/wavpack.h
@@ -8,18 +8,15 @@
8 8
9// wavpack.h 9// wavpack.h
10 10
11#include <sys/types.h> 11#include <inttypes.h>
12 12
13// This header file contains all the definitions required by WavPack. 13// This header file contains all the definitions required by WavPack.
14 14
15// not sure about them.. testing will bring more light into it..
15typedef unsigned char uchar; 16typedef unsigned char uchar;
16#if !defined(__GNUC__) || defined(WIN32)
17typedef unsigned short ushort; 17typedef unsigned short ushort;
18typedef unsigned long ulong; 18typedef unsigned long ulong;
19typedef unsigned int uint; 19typedef unsigned int uint;
20#elif defined(__APPLE__)
21typedef unsigned long ulong;
22#endif
23 20
24// This structure is used to access the individual fields of 32-bit ieee 21// This structure is used to access the individual fields of 32-bit ieee
25// floating point numbers. This will not be compatible with compilers that 22// floating point numbers. This will not be compatible with compilers that