diff options
Diffstat (limited to 'request.c')
-rw-r--r-- | request.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/request.c b/request.c new file mode 100644 index 0000000..d12a4c8 --- /dev/null +++ b/request.c @@ -0,0 +1,22 @@ +/* + FUSE: Filesystem in Userspace + Copyright (C) 2001 Miklos Szeredi (mszeredi@inf.bme.hu) + + This program can be distributed under the terms of the GNU GPL. + See the file COPYING. +*/ + +#include "fuse_i.h" + +#include <linux/module.h> +#include <linux/kernel.h> +#include <linux/slab.h> + + + +/* + * Local Variables: + * indent-tabs-mode: t + * c-basic-offset: 8 + * End: + */ |