aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authormaxice8 <30738253+maxice8@users.noreply.github.com>2020-02-04 15:57:25 +0100
committerGitHub <noreply@github.com>2020-02-04 09:57:25 -0500
commit562223325e6dd2fde2f4e0077dac7e1c44e3dd18 (patch)
tree3837a25ddf0124d8839febc5761a74ff428948ad /example
parenta7ba1d42d0b09377aa7060158859febc292b2228 (diff)
downloadlibfuse-562223325e6dd2fde2f4e0077dac7e1c44e3dd18.tar.gz
Include limits.h because of PATH_MAX usage. (#498)
Fixes build with musl libc on Alpine Linux.
Diffstat (limited to 'example')
-rw-r--r--example/passthrough_hp.cc1
1 files changed, 1 insertions, 0 deletions
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 <time.h>
#include <unistd.h>
#include <pthread.h>
+#include <limits.h>
// C++ includes
#include <cstddef>