#include <unistd.h>
#include "missing_fcntl.h"
-#include "missing_fs.h"
#include "missing_syscall_def.h"
+ /* Since glibc-2.37 (774058d72942249f71d74e7f2b639f77184160a6), sys/mount.h includes linux/mount.h, and
+ * we can safely include both headers in the same source file. However, we cannot do that with older glibc.
+ * To avoid conflicts, let's not use glibc's sys/mount.h, and provide our own minimal implementation.
+ * Fortunately, most of definitions we need are covered by linux/fs.h and linux/mount.h, so only one enum
+ * and a few function prototypes need to be defined here. */
+
/* Possible value for FLAGS parameter of `umount2'. */
enum
{