From patchwork Tue May 5 10:21:11 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qais Yousef X-Patchwork-Id: 6336781 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 56ACB9F32B for ; Tue, 5 May 2015 10:25:53 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 885212034F for ; Tue, 5 May 2015 10:25:52 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 65EA02034A for ; Tue, 5 May 2015 10:25:51 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id E5F9A26156A; Tue, 5 May 2015 12:25:49 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id AE702264EAA; Tue, 5 May 2015 12:24:25 +0200 (CEST) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 0639F264EFA; Tue, 5 May 2015 12:24:22 +0200 (CEST) Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by alsa0.perex.cz (Postfix) with ESMTP id 550E32652D1 for ; Tue, 5 May 2015 12:22:34 +0200 (CEST) Received: from KLMAIL01.kl.imgtec.org (unknown [192.168.5.35]) by Websense Email Security Gateway with ESMTPS id 1D92633F301EF; Tue, 5 May 2015 11:22:31 +0100 (IST) Received: from LEMAIL01.le.imgtec.org (192.168.152.62) by KLMAIL01.kl.imgtec.org (192.168.5.35) with Microsoft SMTP Server (TLS) id 14.3.195.1; Tue, 5 May 2015 11:21:30 +0100 Received: from qyousef-linux.le.imgtec.org (192.168.154.94) by LEMAIL01.le.imgtec.org (192.168.152.62) with Microsoft SMTP Server (TLS) id 14.3.210.2; Tue, 5 May 2015 11:21:29 +0100 From: Qais Yousef To: Date: Tue, 5 May 2015 11:21:11 +0100 Message-ID: <1430821271-15624-8-git-send-email-qais.yousef@imgtec.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1430821271-15624-1-git-send-email-qais.yousef@imgtec.com> References: <1430821271-15624-1-git-send-email-qais.yousef@imgtec.com> MIME-Version: 1.0 X-Originating-IP: [192.168.154.94] Cc: alsa-devel@alsa-project.org, Qais Yousef Subject: [alsa-devel] [TINYCOMPRESS][PATCH v3 7/7] tinycompress.h: explicitly include required headers X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP 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 --- include/tinycompress/tinycompress.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/tinycompress/tinycompress.h b/include/tinycompress/tinycompress.h index 03c396fccea5..68626a42e4e7 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