summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2009-05-09 23:14:55 +0000
committerDave Chapman <dave@dchapman.com>2009-05-09 23:14:55 +0000
commit868652abaa163de646a3d530b9ecfa4a137b7d9b (patch)
treedcb840b7035e9acfa6862d862d6a487b14c9676f /apps/codecs
parent25f77f60dd87b44da516971411e334536e198519 (diff)
Patch by Mohamed Tarek - add #define to protect against multiple inclusion
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20897 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/libcook/rm2wav.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/codecs/libcook/rm2wav.h b/apps/codecs/libcook/rm2wav.h
index 09b20c7fa6..f36145fc19 100644
--- a/apps/codecs/libcook/rm2wav.h
+++ b/apps/codecs/libcook/rm2wav.h
@@ -18,6 +18,9 @@
* KIND, either express or implied.
*
****************************************************************************/
+#ifndef _RM2WAV_H
+#define _RM2WAV_H
+
#include <stdio.h>
#include <stdint.h>
@@ -72,3 +75,4 @@ int open_wav(char* filename);
void close_wav(int fd, RMContext *rmctx);
int real_parse_header(int fd, RMContext *rmctx);
void rm_get_packet(int fd,RMContext *rmctx, RMPacket *pkt);
+#endif