diff --git a/arch/i386/bits/fcntl.h b/arch/i386/bits/fcntl.h index 1b9861d70a0b7e611bc1857686fc5119c96cae40..fdc78736e3d78c039ce55e8b44c39ef0831695fe 100644 --- a/arch/i386/bits/fcntl.h +++ b/arch/i386/bits/fcntl.h @@ -1,8 +1,3 @@ -#define O_ACCMODE 03 -#define O_RDONLY 00 -#define O_WRONLY 01 -#define O_RDWR 02 - #define O_CREAT 0100 #define O_EXCL 0200 #define O_NOCTTY 0400 @@ -42,22 +37,3 @@ #define F_GETLK 12 #define F_SETLK 13 #define F_SETLKW 14 - -#define FD_CLOEXEC 1 - -#define F_RDLCK 0 -#define F_WRLCK 1 -#define F_UNLCK 2 - -#define AT_FDCWD (-100) -#define AT_SYMLINK_NOFOLLOW 0x100 -#define AT_REMOVEDIR 0x200 -#define AT_SYMLINK_FOLLOW 0x400 -#define AT_EACCESS 0x200 - -#define POSIX_FADV_NORMAL 0 -#define POSIX_FADV_RANDOM 1 -#define POSIX_FADV_SEQUENTIAL 2 -#define POSIX_FADV_WILLNEED 3 -#define POSIX_FADV_DONTNEED 4 -#define POSIX_FADV_NOREUSE 5 diff --git a/arch/x86_64/bits/fcntl.h b/arch/x86_64/bits/fcntl.h index 30fa293448c8d297bb6f6227a6b7e38285726ac2..63e116387fedd449713aeb0ff1c6fda698bd7751 100644 --- a/arch/x86_64/bits/fcntl.h +++ b/arch/x86_64/bits/fcntl.h @@ -1,8 +1,3 @@ -#define O_ACCMODE 03 -#define O_RDONLY 00 -#define O_WRONLY 01 -#define O_RDWR 02 - #define O_CREAT 0100 #define O_EXCL 0200 #define O_NOCTTY 0400 @@ -42,22 +37,3 @@ #define F_GETLK 5 #define F_SETLK 6 #define F_SETLKW 7 - -#define FD_CLOEXEC 1 - -#define F_RDLCK 0 -#define F_WRLCK 1 -#define F_UNLCK 2 - -#define AT_FDCWD (-100) -#define AT_SYMLINK_NOFOLLOW 0x100 -#define AT_REMOVEDIR 0x200 -#define AT_SYMLINK_FOLLOW 0x400 -#define AT_EACCESS 0x200 - -#define POSIX_FADV_NORMAL 0 -#define POSIX_FADV_RANDOM 1 -#define POSIX_FADV_SEQUENTIAL 2 -#define POSIX_FADV_WILLNEED 3 -#define POSIX_FADV_DONTNEED 4 -#define POSIX_FADV_NOREUSE 5 diff --git a/include/fcntl.h b/include/fcntl.h index 016653cfc30822f9226508da3b21e846a39aef88..6faf9cda2d1bfc90e343be716b2c251557f04f17 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -29,6 +29,30 @@ int openat(int, const char *, int, ...); int posix_fadvise(int, off_t, off_t, int); int posix_fallocate(int, off_t, off_t); +#define O_ACCMODE 03 +#define O_RDONLY 00 +#define O_WRONLY 01 +#define O_RDWR 02 + +#define F_RDLCK 0 +#define F_WRLCK 1 +#define F_UNLCK 2 + +#define FD_CLOEXEC 1 + +#define AT_FDCWD (-100) +#define AT_SYMLINK_NOFOLLOW 0x100 +#define AT_REMOVEDIR 0x200 +#define AT_SYMLINK_FOLLOW 0x400 +#define AT_EACCESS 0x200 + +#define POSIX_FADV_NORMAL 0 +#define POSIX_FADV_RANDOM 1 +#define POSIX_FADV_SEQUENTIAL 2 +#define POSIX_FADV_WILLNEED 3 +#define POSIX_FADV_DONTNEED 4 +#define POSIX_FADV_NOREUSE 5 + #undef SEEK_SET #undef SEEK_CUR #undef SEEK_END