aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse.c
diff options
context:
space:
mode:
authorMatthias Görgens <matthias.goergens@gmail.com>2023-06-08 15:26:54 +0800
committerGitHub <noreply@github.com>2023-06-08 08:26:54 +0100
commit30a300a848ee5158afa89d1344392a5949923602 (patch)
tree3c54565b32dae08dff1d795f41da7465ccf07680 /lib/fuse.c
parent841cd09006f99539e03cab207a29e258cfb6d023 (diff)
downloadlibfuse-30a300a848ee5158afa89d1344392a5949923602.tar.gz
Remove unnecessary `_GNU_SOURCE` in `fuse.c` (#787)
We stopped using pthread_rwlock_t in 3fecccca989328ed2c0ac68860ee1ceec0673972, so we don't need `_GNU_SOURCE` anymore in `fuse.c`
Diffstat (limited to 'lib/fuse.c')
-rw-r--r--lib/fuse.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/fuse.c b/lib/fuse.c
index 6d5df23..a35c70a 100644
--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -9,10 +9,6 @@
See the file COPYING.LIB
*/
-
-/* For pthread_rwlock_t */
-#define _GNU_SOURCE
-
#include "fuse_config.h"
#include "fuse_i.h"
#include "fuse_lowlevel.h"