diff options
Diffstat (limited to 'example/passthrough.c')
-rw-r--r-- | example/passthrough.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/example/passthrough.c b/example/passthrough.c index 4034327..fbc1597 100644 --- a/example/passthrough.c +++ b/example/passthrough.c @@ -8,18 +8,17 @@ */ /** @file - * @tableofcontents * * This file system mirrors the existing file system hierarchy of the * system, starting at the root file system. This is implemented by * just "passing through" all requests to the corresponding user-space * libc functions. It's performance is terrible. * - * \section section_compile compiling this example + * Compile with * - * gcc -Wall passthrough.c `pkg-config fuse3 --cflags --libs` -o passthrough + * gcc -Wall passthrough.c `pkg-config fuse3 --cflags --libs` -o passthrough * - * \section section_source the complete source + * ## Source code ## * \include passthrough.c */ |