xref: /openbmc/linux/arch/arm/include/uapi/asm/fcntl.h (revision 6f52b16c)
16f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2cb8db5d4SDavid Howells #ifndef _ARM_FCNTL_H
3cb8db5d4SDavid Howells #define _ARM_FCNTL_H
4cb8db5d4SDavid Howells 
5cb8db5d4SDavid Howells #define O_DIRECTORY	 040000	/* must be a directory */
6cb8db5d4SDavid Howells #define O_NOFOLLOW	0100000	/* don't follow links */
7cb8db5d4SDavid Howells #define O_DIRECT	0200000	/* direct disk access hint - currently ignored */
8cb8db5d4SDavid Howells #define O_LARGEFILE	0400000
9cb8db5d4SDavid Howells 
10cb8db5d4SDavid Howells #include <asm-generic/fcntl.h>
11cb8db5d4SDavid Howells 
12cb8db5d4SDavid Howells #endif
13