From 5eb4ab1c139ea38ebe6bb4acba08b09ee7d77d3c Mon Sep 17 00:00:00 2001 From: Baruch Siach Date: Sun, 18 Aug 2019 10:01:06 +0300 Subject: Add missing limits.h include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes build with musl libc that does not include limits.h indirectly via other headers. evtest.c: In function ‘scan_devices’: evtest.c:886:14: error: ‘PATH_MAX’ undeclared (first use in this function); did you mean INT8_MAX’? char fname[PATH_MAX]; ^~~~~~~~ Signed-off-by: Baruch Siach Signed-off-by: Peter Hutterer --- evtest.c | 1 + 1 file changed, 1 insertion(+) diff --git a/evtest.c b/evtest.c index 37d4f85..548c203 100644 --- a/evtest.c +++ b/evtest.c @@ -56,6 +56,7 @@ #include #include #include +#include #include #include #include -- cgit v1.1