blob: df71221399a985f8518eb84e556eea6bb7537ac9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* -*- indent-tabs-mode: t; c-basic-offset: 8; -*- */
/*
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.
*/
#define FUSE_MOUNT_VERSION 1
struct fuse_mount_data {
int version;
int fd;
};
|