LibC: Add all the POSIX_FADV_* constants

This commit is contained in:
Tim Schumacher 2022-04-30 00:58:50 +02:00 committed by Andreas Kling
parent 1cc69edc34
commit a212a741df

View file

@ -11,6 +11,13 @@
__BEGIN_DECLS
#define POSIX_FADV_DONTNEED 1
#define POSIX_FADV_NOREUSE 2
#define POSIX_FADV_NORMAL 3
#define POSIX_FADV_RANDOM 4
#define POSIX_FADV_SEQUENTIAL 5
#define POSIX_FADV_WILLNEED 6
int creat(char const* path, mode_t);
int open(char const* path, int options, ...);
int openat(int dirfd, char const* path, int options, ...);