X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Ffcntl.h;h=63f1bebc019837fb9553548d7c2e75168cd9b064;hb=2e41887f54a8d01353204cb2509b4c466861e3b4;hp=6faf9cda2d1bfc90e343be716b2c251557f04f17;hpb=c2b18f3531b8cd2d5e2295626cff77b7765b356e;p=musl diff --git a/include/fcntl.h b/include/fcntl.h index 6faf9cda..63f1bebc 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -34,6 +34,8 @@ int posix_fallocate(int, off_t, off_t); #define O_WRONLY 01 #define O_RDWR 02 +#define F_DUPFD_CLOEXEC 1030 + #define F_RDLCK 0 #define F_WRLCK 1 #define F_UNLCK 2 @@ -78,6 +80,24 @@ int posix_fallocate(int, off_t, off_t); #define S_IRWXO 0007 #endif +#ifdef _GNU_SOURCE +#define FAPPEND O_APPEND +#define FFSYNC O_FSYNC +#define FASYNC O_ASYNC +#define FNONBLOCK O_NONBLOCK +#define FNDELAY O_NDELAY +#endif + +#ifdef _LARGEFILE64_SOURCE +#define open64 open +#define openat64 openat +#define creat64 creat +#define lockf64 lockf +#define posix_fadvise64 posix_fadvise +#define posix_fallocate64 posix_fallocate +#define off64_t off_t +#endif + #ifdef __cplusplus } #endif