From 20f30e1ae949e1f0d508722a1a799eebb924b093 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 22 Jan 2017 14:50:42 +0100 Subject: [PATCH] tests: add missing include The int32_t type is defined in stdint.h. The musl C library is very conservative in the headers that it internally includes, and stdint.h is not included by any other header, unlike with glibc or uClibc, which breaks the build. Add the missing header. Signed-off-by: "Yann E. MORIN" Reviewed-by: Yong Bakos Reviewed-by: Pekka Paalanen --- tests/string-test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/string-test.c b/tests/string-test.c index a72ec30f..5571b528 100644 --- a/tests/string-test.c +++ b/tests/string-test.c @@ -28,6 +28,7 @@ #include #include #include +#include #include #include "shared/string-helpers.h"