From 50a2db4834906d83651c9e3cd4392adade6b6855 Mon Sep 17 00:00:00 2001 From: Alastair Hughes Date: Thu, 4 Feb 2016 07:25:28 +1300 Subject: Add the missing limits.h include to hook.c PATH_MAX is only defined in limits.h in musl libc, so ensure that it is included. Presumably this is also required on other platforms. Signed-off-by: Alastair Hughes Signed-off-by: Allan McRae --- lib/libalpm/hook.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/libalpm/hook.c b/lib/libalpm/hook.c index ed79fdd9..00d999b1 100644 --- a/lib/libalpm/hook.c +++ b/lib/libalpm/hook.c @@ -20,6 +20,7 @@ #include #include #include +#include #include #include "handle.h" -- cgit v1.2.3-24-g4f1b