From 562223325e6dd2fde2f4e0077dac7e1c44e3dd18 Mon Sep 17 00:00:00 2001 From: maxice8 <30738253+maxice8@users.noreply.github.com> Date: Tue, 4 Feb 2020 15:57:25 +0100 Subject: [PATCH] Include limits.h because of PATH_MAX usage. (#498) Fixes build with musl libc on Alpine Linux. --- example/passthrough_hp.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc index 974551e..61ab685 100644 --- a/example/passthrough_hp.cc +++ b/example/passthrough_hp.cc @@ -67,6 +67,7 @@ #include #include #include +#include // C++ includes #include -- 2.30.2