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 | |
| parent | 20a5926d2e0fe2cf7c5508f490ae04d61bfd07a4 (diff) | |
| download | rockbox-0c74d2ce8e7e0d7ce46246896ca7cf18648ffc24.zip rockbox-0c74d2ce8e7e0d7ce46246896ca7cf18648ffc24.tar.gz rockbox-0c74d2ce8e7e0d7ce46246896ca7cf18648ffc24.tar.bz2 rockbox-0c74d2ce8e7e0d7ce46246896ca7cf18648ffc24.tar.xz | |
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
| -rw-r--r-- | apps/dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ * ****************************************************************************/ #include "config.h" - +#include <stdbool.h> #include <inttypes.h> #include <string.h> #include <sound.h> |