mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
25 lines
718 B
C
25 lines
718 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_AT_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_AT_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
/**
|
|
* @fileoverview AT_xxx constants for fcntl(), fopenat(), etc..
|
|
* @see libc/sysv/consts/auxv.h for getauxval() constants
|
|
*/
|
|
|
|
extern const int AT_FDCWD;
|
|
extern const int AT_SYMLINK_FOLLOW;
|
|
extern const int AT_SYMLINK_NOFOLLOW;
|
|
extern const int AT_REMOVEDIR;
|
|
extern const int AT_EACCESS;
|
|
extern const int AT_EMPTY_PATH;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#define AT_FDCWD AT_FDCWD
|
|
#define AT_SYMLINK_FOLLOW AT_SYMLINK_FOLLOW
|
|
#define AT_SYMLINK_NOFOLLOW AT_SYMLINK_NOFOLLOW
|
|
#define AT_REMOVEDIR AT_REMOVEDIR
|
|
#define AT_EACCESS AT_EACCESS
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_AT_H_ */
|