Hook up inotify_init1 open mode flags printer

* file.c [LINUX] (sys_inotify_init1): New function.
* linux/syscall.h: Declare new sys_inotify_init1 handler.
* linux/bfin/syscallent.h: Hook up new handler.
* linux/hppa/syscallent.h: Likewise.
* linux/i386/syscallent.h: Likewise.
* linux/x86_64/syscallent.h: Likewise.
diff --git a/file.c b/file.c
index d6a2885..854548f 100644
--- a/file.c
+++ b/file.c
@@ -2885,6 +2885,14 @@
 }
 
 int
+sys_inotify_init1(struct tcb *tcp)
+{
+	if (entering(tcp))
+		printflags(open_mode_flags, tcp->u_arg[0], "O_???");
+	return 0;
+}
+
+int
 sys_fallocate(struct tcb *tcp)
 {
 	if (entering(tcp)) {