mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-03 09:48:29 +00:00
Initial import
This commit is contained in:
commit
c91b3c5006
14915 changed files with 590219 additions and 0 deletions
27
libc/sysv/consts/at.h
Normal file
27
libc/sysv/consts/at.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_AT_H_
|
||||
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_AT_H_
|
||||
#include "libc/runtime/symbolic.h"
|
||||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
/**
|
||||
* @fileoverview AT_xxx constants for fcntl(), fopenat(), etc..
|
||||
* @see libc/sysv/consts/auxv.h for getauxval() constants
|
||||
*/
|
||||
|
||||
hidden extern const long AT_FDCWD;
|
||||
hidden extern const long AT_SYMLINK_FOLLOW;
|
||||
hidden extern const long AT_SYMLINK_NOFOLLOW;
|
||||
hidden extern const long AT_REMOVEDIR;
|
||||
hidden extern const long AT_EACCESS;
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
|
||||
#define AT_FDCWD SYMBOLIC(AT_FDCWD)
|
||||
#define AT_SYMLINK_FOLLOW SYMBOLIC(AT_SYMLINK_FOLLOW)
|
||||
#define AT_SYMLINK_NOFOLLOW SYMBOLIC(AT_SYMLINK_NOFOLLOW)
|
||||
#define AT_REMOVEDIR SYMBOLIC(AT_REMOVEDIR)
|
||||
#define AT_EACCESS SYMBOLIC(AT_EACCESS)
|
||||
|
||||
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_AT_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue