mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-02-09 11:31:01 +08:00
![Antonio SJ Musumeci](/assets/img/avatar_default.png)
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;
|
|
};
|