diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2012-05-02 21:13:42 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2012-05-02 21:13:42 -0400 |
| commit | 5f0cb713615c844d9133f3664333a73816bbfd17 (patch) | |
| tree | d7de9efe9d57dd5651effe0aa9a634da5b05331d | |
| parent | e189b33ff4cc530cb6e59a17b260675d7341e551 (diff) | |
| download | rockbox-5f0cb713615c844d9133f3664333a73816bbfd17.zip rockbox-5f0cb713615c844d9133f3664333a73816bbfd17.tar.gz rockbox-5f0cb713615c844d9133f3664333a73816bbfd17.tar.bz2 rockbox-5f0cb713615c844d9133f3664333a73816bbfd17.tar.xz | |
Silly includes going haywire. Fix the errors/warnings (hopefully).
Change-Id: I7ec2b7e8fe56ad6d65ab757e8667b4951d00ee29
| -rw-r--r-- | firmware/export/pcm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/pcm.h b/firmware/export/pcm.h index 608129c..fdd4623 100644 --- a/firmware/export/pcm.h +++ b/firmware/export/pcm.h @@ -21,7 +21,8 @@ #ifndef PCM_PLAYBACK_H #define PCM_PLAYBACK_H -#include <sys/types.h> /* size_t, uint32_t */ +#include <string.h> /* size_t */ +#include <inttypes.h> /* uint32_t */ #include "config.h" enum pcm_dma_status |