aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/fuse.h3
-rw-r--r--lib/fuse_i.h6
2 files changed, 0 insertions, 9 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 503776b..7fe55f3 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -37,9 +37,6 @@ extern "C" {
/** Handle for a FUSE filesystem */
struct fuse;
-/** Structure containing a raw command */
-struct fuse_cmd;
-
/** Function to add an entry in a readdir() operation
*
* @param buf the buffer passed to the readdir() operation
diff --git a/lib/fuse_i.h b/lib/fuse_i.h
index 3c46d34..ffcf062 100644
--- a/lib/fuse_i.h
+++ b/lib/fuse_i.h
@@ -91,12 +91,6 @@ struct fuse_ll {
struct fuse_notify_req notify_list;
};
-struct fuse_cmd {
- char *buf;
- size_t buflen;
- struct fuse_chan *ch;
-};
-
struct fuse_chan *fuse_kern_chan_new(int fd);
void fuse_kern_unmount(const char *mountpoint, int fd);