From: Qais Yousef Date: Tue, 5 May 2015 10:21:11 +0000 (+0100) Subject: tinycompress.h: explicitly include required headers X-Git-Tag: v1.1.0~7 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=dc625b613701a2e7ecefdfb97e7a4a1d8dea6a1a;p=tinycompress.git tinycompress.h: explicitly include required headers tinycompress.h was relying on other files to include linux/types.h and stdbool.h which are required by it. Explicitly include it to fix compile errors when external program tries to include this header. Signed-off-by: Qais Yousef Signed-off-by: Vinod Koul --- diff --git a/include/tinycompress/tinycompress.h b/include/tinycompress/tinycompress.h index 03c396f..68626a4 100644 --- a/include/tinycompress/tinycompress.h +++ b/include/tinycompress/tinycompress.h @@ -53,6 +53,9 @@ #ifndef __TINYCOMPRESS_H #define __TINYCOMPRESS_H +#include +#include + #if defined(__cplusplus) extern "C" { #endif