diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2013-07-17 15:14:55 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2013-07-17 15:14:55 +0200 |
commit | 95e71dd19ebf1ddf7e5285d21ba9001d44e30f7a (patch) | |
tree | 4aed700227e21d21790e683cb737a9df9effc06d /example/null.c | |
parent | f9a7c2b1135beeacbdcecab9065eddd2f7e68dbd (diff) | |
parent | f4f87bba1266e6135e300ac6853efb9708aabce9 (diff) | |
download | libfuse-95e71dd19ebf1ddf7e5285d21ba9001d44e30f7a.tar.gz |
Merge https://github.com/qknight/fuse-fuse
Diffstat (limited to 'example/null.c')
-rwxr-xr-x[-rw-r--r--] | example/null.c | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/example/null.c b/example/null.c index 4e2bb8f..6952333 100644..100755 --- a/example/null.c +++ b/example/null.c @@ -4,10 +4,21 @@ 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 */ +/** @file + * + * null.c - FUSE: Filesystem in Userspace + * + * \section section_compile compiling this example + * + * gcc -Wall null.c `pkg-config fuse --cflags --libs` -o null + * + * \section section_source the complete source + * \include null.c + */ + + #define FUSE_USE_VERSION 30 #include <fuse.h> |