cosmopolitan/libc/sysv/consts/at.h
Justine Tunney fa20edc44d
Reduce header complexity
- 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
2023-11-28 14:39:42 -08:00

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_ */