mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-12 14:09:12 +00:00
Improve isystem includes and magic numbers
This commit is contained in:
parent
1e5bd4d23e
commit
228fb7428b
143 changed files with 1183 additions and 266 deletions
22
libc/sysv/consts/unmount.h
Normal file
22
libc/sysv/consts/unmount.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_MOUNT_H_
|
||||
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_MOUNT_H_
|
||||
#include "libc/runtime/symbolic.h"
|
||||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
extern const long MNT_FORCE;
|
||||
extern const long MNT_DETACH;
|
||||
extern const long MNT_EXPIRE;
|
||||
extern const long UMOUNT_NOFOLLOW;
|
||||
extern const long MNT_BYFSID;
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
|
||||
#define MNT_FORCE SYMBOLIC(MNT_FORCE)
|
||||
#define MNT_DETACH SYMBOLIC(MNT_DETACH)
|
||||
#define MNT_EXPIRE SYMBOLIC(MNT_EXPIRE)
|
||||
#define UMOUNT_NOFOLLOW SYMBOLIC(UMOUNT_NOFOLLOW)
|
||||
#define MNT_BYFSID SYMBOLIC(MNT_BYFSID)
|
||||
|
||||
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_MOUNT_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue