aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r--lib/fuse_i.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/fuse_i.h b/lib/fuse_i.h
index 2815a8a..f7924eb 100644
--- a/lib/fuse_i.h
+++ b/lib/fuse_i.h
@@ -9,6 +9,13 @@
#include "fuse.h"
#include "fuse_lowlevel.h"
+#define MIN(a, b) \
+({ \
+ typeof(a) _a = (a); \
+ typeof(b) _b = (b); \
+ _a < _b ? _a : _b; \
+})
+
struct mount_opts;
struct fuse_req {