From 4e0f4f3befcaf7e1c6ff4a3ff064924167332a31 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Tue, 3 May 2016 12:51:51 -0400 Subject: [PATCH] Fix: PATH_MAX requires limits.h on OS X and Solaris MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- tests/lib/common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lib/common.c b/tests/lib/common.c index d137cb30..0b8ebdf1 100644 --- a/tests/lib/common.c +++ b/tests/lib/common.c @@ -22,6 +22,7 @@ #include #include #include +#include #include struct bt_context *create_context_with_path(const char *path) -- 2.34.1