Index: fusl/src/linux/fanotify.c |
diff --git a/fusl/src/linux/fanotify.c b/fusl/src/linux/fanotify.c |
index c6211afc0002dbf1a288b6375d662cece5e35c5c..623951d3dadab440e5d198a8b751e3aa16db4b80 100644 |
--- a/fusl/src/linux/fanotify.c |
+++ b/fusl/src/linux/fanotify.c |
@@ -1,14 +1,15 @@ |
#include "syscall.h" |
#include <sys/fanotify.h> |
-int fanotify_init(unsigned flags, unsigned event_f_flags) |
-{ |
- return syscall(SYS_fanotify_init, flags, event_f_flags); |
+int fanotify_init(unsigned flags, unsigned event_f_flags) { |
+ return syscall(SYS_fanotify_init, flags, event_f_flags); |
} |
-int fanotify_mark(int fanotify_fd, unsigned flags, unsigned long long mask, |
- int dfd, const char *pathname) |
-{ |
- return syscall(SYS_fanotify_mark, fanotify_fd, flags, __SYSCALL_LL_E(mask), dfd, pathname); |
+int fanotify_mark(int fanotify_fd, |
+ unsigned flags, |
+ unsigned long long mask, |
+ int dfd, |
+ const char* pathname) { |
+ return syscall(SYS_fanotify_mark, fanotify_fd, flags, __SYSCALL_LL_E(mask), |
+ dfd, pathname); |
} |
- |