summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-02-17 22:25:23 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-02-17 22:25:23 +0000
commit0c74d2ce8e7e0d7ce46246896ca7cf18648ffc24 (patch)
treee1c86fe65f48bea4d970ae0a44e870707bdfaecd /apps
parent20a5926d2e0fe2cf7c5508f490ae04d61bfd07a4 (diff)
downloadrockbox-0c74d2ce8e7e0d7ce46246896ca7cf18648ffc24.tar.gz
rockbox-0c74d2ce8e7e0d7ce46246896ca7cf18648ffc24.zip
include stdbool.h to get the bool type and fix the build error
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12361 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/dsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dsp.c b/apps/dsp.c
index 7ecb791f50..c7eed8bd76 100644
--- a/apps/dsp.c
+++ b/apps/dsp.c
@@ -17,7 +17,7 @@
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19#include "config.h" 19#include "config.h"
20 20#include <stdbool.h>
21#include <inttypes.h> 21#include <inttypes.h>
22#include <string.h> 22#include <string.h>
23#include <sound.h> 23#include <sound.h>