diff options
author | Max Kellermann <max@duempel.org> | 2010-03-17 18:29:56 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-03-17 18:29:56 +0100 |
commit | e9b75d462c4d0ffee3b3b26582800ec4f657a333 (patch) | |
tree | a347a5ebb0e6740c42c51775b947138a6c424a5c | |
parent | 68017b12541f6ab924447afab927bae8b58cfdec (diff) | |
download | mpd-e9b75d462c4d0ffee3b3b26582800ec4f657a333.tar.gz mpd-e9b75d462c4d0ffee3b3b26582800ec4f657a333.tar.xz mpd-e9b75d462c4d0ffee3b3b26582800ec4f657a333.zip |
AudioCompress: explicitly include stdint.h
For int16_t.
-rw-r--r-- | src/AudioCompress/compress.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/AudioCompress/compress.c b/src/AudioCompress/compress.c index bf72b2eab..d5c08372c 100644 --- a/src/AudioCompress/compress.c +++ b/src/AudioCompress/compress.c @@ -6,6 +6,7 @@ */ #include <stdio.h> +#include <stdint.h> #include <stdlib.h> #include <string.h> |