aboutsummaryrefslogtreecommitdiffstats
path: root/request.c
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2001-10-25 14:16:17 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2001-10-25 14:16:17 +0000
commitd8ae7147bfe8f40e72ea640c6631a4b2c6f2c6c9 (patch)
treeb9cc8c9342ebf54a45184b0345a798106466a3a8 /request.c
parent79b52f63303c15d4545a7464775f4b1beab8d2c9 (diff)
downloadlibfuse-d8ae7147bfe8f40e72ea640c6631a4b2c6f2c6c9.tar.gz
improvements
Diffstat (limited to 'request.c')
-rw-r--r--request.c22
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:
+ */