AudioCompress: include stdint.h for int16_t definition.

In mingw32, int16_t is not defined by sys/types.h, but it is by stdint.h,
and it is in the int16_t man page as being defined in stdint.h. Thanks to
mithi for help debugging.
This commit is contained in:
Avuton Olrich 2010-05-11 18:40:38 -07:00
parent 8341daca4a
commit bead892e21

View File

@ -8,7 +8,7 @@
#ifndef COMPRESS_H
#define COMPRESS_H
#include <sys/types.h>
#include <stdint.h>
//! Configuration values for the compressor object
struct CompressorConfig {