mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-08 07:23:33 +00:00
- Invent openatemp() API - Invent O_UNLINK open flag - Introduce getenv_secure() API - Remove `git pull` from cosmocc - Fix utimes() when path is NULL - Fix mktemp() to never return NULL - Fix utimensat() UTIME_OMIT on XNU - Improve utimensat() code for RHEL5 - Turn `argv[0]` C:/ to /C/ on Windows - Introduce tmpnam() and tmpnam_r() APIs - Fix more const issues with internal APIs - Permit utimes() on WIN32 in O_RDONLY mode - Fix fdopendir() to check fd is a directory - Fix recent crash regression in landlock make - Fix futimens(AT_FDCWD, NULL) to return EBADF - Use workaround so `make -j` doesn't fork bomb - Rename dontdiscard to __wur (just like glibc) - Fix st_size for WIN32 symlinks containing UTF-8 - Introduce stdio ext APIs needed by GNU coreutils - Fix lstat() on WIN32 for symlinks to directories - Move some constants from normalize.inc to limits.h - Fix segv with memchr() and memcmp() overlapping page - Implement POSIX fflush() behavior for reader streams - Implement AT_SYMLINK_NOFOLLOW for utimensat() on WIN32 - Don't change read-only status of existing files on WIN32 - Correctly handle `0x[^[:xdigit:]]` case in strtol() functions
66 lines
1.9 KiB
C
66 lines
1.9 KiB
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_O_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_O_H_
|
|
|
|
#define O_RDONLY 0
|
|
#define O_WRONLY 1
|
|
#define O_RDWR 2
|
|
#define O_ACCMODE 3
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const unsigned O_APPEND;
|
|
extern const unsigned O_ASYNC;
|
|
extern const unsigned O_CLOEXEC;
|
|
extern const unsigned O_COMPRESSED;
|
|
extern const unsigned O_CREAT;
|
|
extern const unsigned O_DIRECT;
|
|
extern const unsigned O_DIRECTORY;
|
|
extern const unsigned O_DSYNC;
|
|
extern const unsigned O_EXCL;
|
|
extern const unsigned O_EXEC;
|
|
extern const unsigned O_EXLOCK;
|
|
extern const unsigned O_INDEXED;
|
|
extern const unsigned O_LARGEFILE;
|
|
extern const unsigned O_NOATIME;
|
|
extern const unsigned O_NOCTTY;
|
|
extern const unsigned O_NOFOLLOW;
|
|
extern const unsigned O_NOFOLLOW_ANY;
|
|
extern const unsigned O_NONBLOCK;
|
|
extern const unsigned O_PATH;
|
|
extern const unsigned O_RANDOM;
|
|
extern const unsigned O_RSYNC;
|
|
extern const unsigned O_SEARCH;
|
|
extern const unsigned O_SEQUENTIAL;
|
|
extern const unsigned O_SHLOCK;
|
|
extern const unsigned O_SYNC;
|
|
extern const unsigned O_TMPFILE; /* use tmpfd() or tmpfile() */
|
|
extern const unsigned O_TRUNC;
|
|
extern const unsigned O_TTY_INIT;
|
|
extern const unsigned O_UNLINK;
|
|
extern const unsigned O_VERIFY;
|
|
|
|
#define O_APPEND O_APPEND
|
|
#define O_ASYNC O_ASYNC
|
|
#define O_CLOEXEC O_CLOEXEC
|
|
#define O_COMPRESSED O_COMPRESSED
|
|
#define O_CREAT O_CREAT
|
|
#define O_DIRECTORY O_DIRECTORY
|
|
#define O_EXCL O_EXCL
|
|
#define O_EXEC O_EXEC
|
|
#define O_INDEXED O_INDEXED
|
|
#define O_LARGEFILE O_LARGEFILE
|
|
#define O_NDELAY O_NONBLOCK
|
|
#define O_NOATIME O_NOATIME
|
|
#define O_NOCTTY O_NOCTTY
|
|
#define O_NOFOLLOW O_NOFOLLOW
|
|
#define O_NONBLOCK O_NONBLOCK
|
|
#define O_RANDOM O_RANDOM
|
|
#define O_SEQUENTIAL O_SEQUENTIAL
|
|
#define O_SYNC O_SYNC
|
|
#define O_TRUNC O_TRUNC
|
|
#define O_UNLINK O_UNLINK
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_O_H_ */
|