diff options
author | Matthias Görgens <matthias.goergens@gmail.com> | 2023-06-08 15:26:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-08 08:26:54 +0100 |
commit | 30a300a848ee5158afa89d1344392a5949923602 (patch) | |
tree | 3c54565b32dae08dff1d795f41da7465ccf07680 /lib | |
parent | 841cd09006f99539e03cab207a29e258cfb6d023 (diff) | |
download | libfuse-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')
-rw-r--r-- | lib/fuse.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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" |