From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: MIME-Version: 1.0 From: Ilya Averyanov Date: Tue, 2 Aug 2016 18:14:56 +0300 Message-ID: Subject: [PATCH SBC] Fix for build on windows mingw To: linux-bluetooth@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-bluetooth-owner@vger.kernel.org List-ID: --- sbc/sbc_math.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sbc/sbc_math.h b/sbc/sbc_math.h index 5476860..25b08ea 100644 --- a/sbc/sbc_math.h +++ b/sbc/sbc_math.h @@ -24,6 +24,8 @@ * */ +#include + #define fabs(x) ((x) < 0 ? -(x) : (x)) /* C does not provide an explicit arithmetic shift right but this will always be correct and every compiler *should* generate optimal code */ -- 2.7.4