diff options
author | Darrick J. Wong <djwong@kernel.org> | 2025-09-15 17:41:47 -0700 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-09-16 18:54:02 +0200 |
commit | 6e4557c57c4ce63de4042f77dcbf58627d13a59b (patch) | |
tree | 6f83884af230f11e23d3311fef39e76fdb249169 /example/memfs_ll.cc | |
parent | 939fc0dd3ed525c0be780537cfa41ffcbf98648c (diff) | |
download | libfuse-6e4557c57c4ce63de4042f77dcbf58627d13a59b.tar.gz |
libfuse: don't put HAVE_STATX in a public header
fuse.h and fuse_lowlevel.h are already forward declaring struct statx,
there is no need for HAVE_STATX anymore. HAVE_STATX also bears the
risk to conflict with an application define. Alternatively it would
have been possible to change to HAVE_FUSE_STATX.
Get rid of the conditionals in the public header files and
also remove HAVE_STATX definition from the public
libfuse_config.h.
Edit by Bernd: Commit message and removal of HAVE_STATX from
public libfuse_config.h.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
Diffstat (limited to 'example/memfs_ll.cc')
-rw-r--r-- | example/memfs_ll.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/memfs_ll.cc b/example/memfs_ll.cc index edda34b..7055a43 100644 --- a/example/memfs_ll.cc +++ b/example/memfs_ll.cc @@ -6,7 +6,7 @@ See the file GPL2.txt. */ -#define FUSE_USE_VERSION 317 +#define FUSE_USE_VERSION FUSE_MAKE_VERSION(3, 18) #include <algorithm> #include <stdio.h> |