mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-29 12:03:59 +08:00
5ab0fbcaee
Yes, these are unrelated changes but somehow ended up being prototyped together and I'm too lazy to separate them.
11 lines
140 B
C
11 lines
140 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct fuse_msgbuf_t fuse_msgbuf_t;
|
|
struct fuse_msgbuf_t
|
|
{
|
|
uint32_t size;
|
|
char *mem;
|
|
};
|