mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-26 02:09:52 +08:00
11 lines
146 B
C
11 lines
146 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef struct fuse_timeouts_s fuse_timeouts_t;
|
||
|
struct fuse_timeouts_s
|
||
|
{
|
||
|
uint64_t entry;
|
||
|
uint64_t attr;
|
||
|
};
|