Include limits.h because of PATH_MAX usage. (#498)
authormaxice8 <30738253+maxice8@users.noreply.github.com>
Tue, 4 Feb 2020 14:57:25 +0000 (15:57 +0100)
committerGitHub <noreply@github.com>
Tue, 4 Feb 2020 14:57:25 +0000 (09:57 -0500)
Fixes build with musl libc on Alpine Linux.

example/passthrough_hp.cc

index 974551ea45539ab760c02804ad1fe8b65966617e..61ab68562116231ed4a3bf1518e15c9786f91588 100644 (file)
@@ -67,6 +67,7 @@
 #include <time.h>
 #include <unistd.h>
 #include <pthread.h>
+#include <limits.h>
 
 // C++ includes
 #include <cstddef>