summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-17 13:40:13 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-17 13:40:13 +0000
commita70782addc1a465db57b953b119159b5cc50b8a9 (patch)
tree5c31e9e2c42a6837472d88c838b7708d31ff65a0
parent5254710e63f8fb119d88bc37e19ce3aa6d90afe1 (diff)
downloadrockbox-a70782addc1a465db57b953b119159b5cc50b8a9.tar.gz
rockbox-a70782addc1a465db57b953b119159b5cc50b8a9.zip
proper #ifdef'ing around the file to prevent errors if multiply included
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@121 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/types.h b/firmware/types.h
index 6a88eeba78..268d433d64 100644
--- a/firmware/types.h
+++ b/firmware/types.h
@@ -17,4 +17,9 @@
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19 19
20#ifndef __TYPES_H
21#define __TYPES_H
22
20typedef unsigned char bool; 23typedef unsigned char bool;
24
25#endif