aboutsummaryrefslogtreecommitdiffstats
path: root/lib/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.c')
-rw-r--r--lib/util.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/util.c b/lib/util.c
index a529d38..956c3d2 100644
--- a/lib/util.c
+++ b/lib/util.c
@@ -1,7 +1,14 @@
#include <stdlib.h>
#include <errno.h>
+#ifndef FUSE_USE_VERSION
+#define FUSE_USE_VERSION (FUSE_MAKE_VERSION(3, 18))
+#endif
+
#include "util.h"
+#include "fuse_log.h"
+#include "fuse_lowlevel.h"
+#include <stdio.h>
int libfuse_strtol(const char *str, long *res)
{
@@ -25,3 +32,4 @@ int libfuse_strtol(const char *str, long *res)
*res = val;
return 0;
}
+