Fix the following compile error
authorMiklos Szeredi <mszeredi@suse.cz>
Thu, 17 Nov 2011 11:36:38 +0000 (12:36 +0100)
committerMiklos Szeredi <mszeredi@suse.cz>
Thu, 17 Nov 2011 11:36:38 +0000 (12:36 +0100)
fusermount.c: In function 'clone_newns':
fusermount.c:315:2: warning: implicit declaration of function 'clone' [-Wimplicit-function-declaration]
fusermount.c:315:44: error: 'CLONE_NEWNS' undeclared (first use in this function)
fusermount.c:315:44: note: each undeclared identifier is reported only once for each function it appears in
fusermount.c:317:1: warning: control reaches end of non-void function [-Wreturn-type]

util/fusermount.c

index b90c520e91a7c4e5994598afdc792acfe72e715e..b2e87d95fb9be2e61fbe24b3908ef85273e91261 100644 (file)
@@ -7,6 +7,7 @@
 */
 /* This program does the mounting and unmounting of FUSE filesystems */
 
+#define _GNU_SOURCE /* for clone */
 #include <config.h>
 
 #include "mount_util.h"