File 0001-include-stdint-h.patch of Package mingw64-sbc
diff --git a/sbc/sbc_math.h b/sbc/sbc_math.h index 28b51c1..c64fa6a 100644 --- a/sbc/sbc_math.h +++ b/sbc/sbc_math.h @@ -7,6 +7,7 @@ * * SPDX-License-Identifier: LGPL-2.1-or-later */ +#include <stdint.h> #define fabs(x) ((x) < 0 ? -(x) : (x)) /* C does not provide an explicit arithmetic shift right but this will