Remove unnecessary `_GNU_SOURCE` in `fuse.c` (#787)
authorMatthias Görgens <matthias.goergens@gmail.com>
Thu, 8 Jun 2023 07:26:54 +0000 (15:26 +0800)
committerGitHub <noreply@github.com>
Thu, 8 Jun 2023 07:26:54 +0000 (08:26 +0100)
We stopped using pthread_rwlock_t in 3fecccca989328ed2c0ac68860ee1ceec0673972, so we don't need `_GNU_SOURCE` anymore in `fuse.c`

lib/fuse.c

index 6d5df233ae55cec185932c22b73f9b19482ba5be..a35c70aab6b932d0199c1b350af98a12342db25a 100644 (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"