diff options
author | Giulio Benetti <giulio.benetti@benettiengineering.com> | 2023-04-06 13:37:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-06 12:37:57 +0100 |
commit | c60a90b73971706f525fc7e3289291636f50caa5 (patch) | |
tree | 7bc697ed727a8e650a0106ec34df9a4912648e8d /lib/mount.c | |
parent | 4cf25c27f89754e0e0310cb430dee0ddd9493c70 (diff) | |
download | libfuse-c60a90b73971706f525fc7e3289291636f50caa5.tar.gz |
Fix MS_LAZYTIME not defined on uclibc and move all MS_* and UMOUNT_* (#753)
as well as <sys/mount.h> inclusion to new fuse_mount_compat.h file.
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Diffstat (limited to 'lib/mount.c')
-rw-r--r-- | lib/mount.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/mount.c b/lib/mount.c index 1f1ee86..3990243 100644 --- a/lib/mount.c +++ b/lib/mount.c @@ -25,7 +25,8 @@ #include <sys/socket.h> #include <sys/un.h> #include <sys/wait.h> -#include <sys/mount.h> + +#include "fuse_mount_compat.h" #ifdef __NetBSD__ #include <perfuse.h> |