aboutsummaryrefslogtreecommitdiff
path: root/example/null.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/null.c')
-rwxr-xr-x[-rw-r--r--]example/null.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/example/null.c b/example/null.c
index b72cf4d..1ff1954 100644..100755
--- a/example/null.c
+++ b/example/null.c
@@ -4,11 +4,24 @@
This program can be distributed under the terms of the GNU GPL.
See the file COPYING.
-
- gcc -Wall null.c `pkg-config fuse --cflags --libs` -o null
*/
-#define FUSE_USE_VERSION 26
+/** @file
+ *
+ * null.c - FUSE: Filesystem in Userspace
+ *
+ * \section section_compile compiling this example
+ *
+ * gcc -Wall null.c `pkg-config fuse3 --cflags --libs` -o null
+ *
+ * \section section_source the complete source
+ * \include null.c
+ */
+
+
+#define FUSE_USE_VERSION 30
+
+#include <config.h>
#include <fuse.h>
#include <string.h>