diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-02-17 22:25:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-02-17 22:25:23 +0000 |
commit | 0c74d2ce8e7e0d7ce46246896ca7cf18648ffc24 (patch) | |
tree | e1c86fe65f48bea4d970ae0a44e870707bdfaecd /apps | |
parent | 20a5926d2e0fe2cf7c5508f490ae04d61bfd07a4 (diff) | |
download | rockbox-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.c | 2 |
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 @@ * ****************************************************************************/ #include "config.h" - +#include <stdbool.h> #include <inttypes.h> #include <string.h> #include <sound.h> |