diff options
Diffstat (limited to 'lib/util.c')
-rw-r--r-- | lib/util.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -10,7 +10,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) { @@ -44,3 +51,4 @@ void fuse_set_thread_name(unsigned long tid, const char *name) (void)name; #endif } + |