mirror of
https://github.com/borgbase/vorta
synced 2024-12-22 15:57:34 +00:00
ca497f8815
This adds trailing lines to files, removes trailing white space in all the other lines and unifies line endings. Additionally it formats the test code with `black`.
21 lines
564 B
Diff
21 lines
564 B
Diff
diff -up fuse-2.9.2/include/fuse_kernel.h.conflictfix fuse-2.9.2/include/fuse_kernel.h
|
|
--- fuse-2.9.2/include/fuse_kernel.h.conflictfix 2013-06-26 09:31:57.862198038 -0400
|
|
+++ fuse-2.9.2/include/fuse_kernel.h 2013-06-26 09:32:19.679198365 -0400
|
|
@@ -88,12 +88,16 @@
|
|
#ifndef _LINUX_FUSE_H
|
|
#define _LINUX_FUSE_H
|
|
|
|
-#include <sys/types.h>
|
|
+#ifdef __linux__
|
|
+#include <linux/types.h>
|
|
+#else
|
|
+#include <stdint.h>
|
|
#define __u64 uint64_t
|
|
#define __s64 int64_t
|
|
#define __u32 uint32_t
|
|
#define __s32 int32_t
|
|
#define __u16 uint16_t
|
|
+#endif
|
|
|
|
/*
|
|
* Version negotiation:
|