Remove unnecessary _GNU_SOURCE in fuse.c (#787)

We stopped using pthread_rwlock_t in 3fecccca98, so we don't need `_GNU_SOURCE` anymore in `fuse.c`
This commit is contained in:
Matthias Görgens 2023-06-08 15:26:54 +08:00 committed by GitHub
parent 841cd09006
commit 30a300a848
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"