From cb714a222c1a250c33f3c3f900e049f5a46010c3 Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Tue, 3 Dec 2024 09:17:46 -0800 Subject: [PATCH] tests: Add stdint.h header The build was failing on FreeBSD because stdint.h is required for int64_t. Signed-off-by: Brian Barrett --- test/support/support.h | 1 + 1 file changed, 1 insertion(+) diff --git a/test/support/support.h b/test/support/support.h index 35c1a2ce97d..a7249ff535b 100644 --- a/test/support/support.h +++ b/test/support/support.h @@ -23,6 +23,7 @@ #include #include +#include #define TEST_AND_REPORT(res, exp_res, str) \ if (res == exp_res) \