wasm
This commit is contained in:
parent
47b135aca0
commit
f90881b03d
9824 changed files with 1706556 additions and 114 deletions
38
binlib/wasi-sysroot-28.0/include/wasm32-wasip1/__mode_t.h
Normal file
38
binlib/wasi-sysroot-28.0/include/wasm32-wasip1/__mode_t.h
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
#ifndef __wasilibc___mode_t_h
|
||||
#define __wasilibc___mode_t_h
|
||||
|
||||
#define S_IFMT \
|
||||
(S_IFBLK | S_IFCHR | S_IFDIR | S_IFIFO | S_IFLNK | S_IFREG | S_IFSOCK)
|
||||
#define S_IFBLK (0x6000)
|
||||
#define S_IFCHR (0x2000)
|
||||
#define S_IFDIR (0x4000)
|
||||
#define S_IFLNK (0xa000)
|
||||
#define S_IFREG (0x8000)
|
||||
#define S_IFSOCK (0xc000)
|
||||
#define S_IFIFO (0x1000)
|
||||
|
||||
#define S_ISBLK(m) (((m)&S_IFMT) == S_IFBLK)
|
||||
#define S_ISCHR(m) (((m)&S_IFMT) == S_IFCHR)
|
||||
#define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
|
||||
#define S_ISFIFO(m) (((m)&S_IFMT) == S_IFIFO)
|
||||
#define S_ISLNK(m) (((m)&S_IFMT) == S_IFLNK)
|
||||
#define S_ISREG(m) (((m)&S_IFMT) == S_IFREG)
|
||||
#define S_ISSOCK(m) (((m)&S_IFMT) == S_IFSOCK)
|
||||
|
||||
#define S_IXOTH (0x1)
|
||||
#define S_IWOTH (0x2)
|
||||
#define S_IROTH (0x4)
|
||||
#define S_IRWXO (S_IXOTH | S_IWOTH | S_IROTH)
|
||||
#define S_IXGRP (0x8)
|
||||
#define S_IWGRP (0x10)
|
||||
#define S_IRGRP (0x20)
|
||||
#define S_IRWXG (S_IXGRP | S_IWGRP | S_IRGRP)
|
||||
#define S_IXUSR (0x40)
|
||||
#define S_IWUSR (0x80)
|
||||
#define S_IRUSR (0x100)
|
||||
#define S_IRWXU (S_IXUSR | S_IWUSR | S_IRUSR)
|
||||
#define S_ISVTX (0x200)
|
||||
#define S_ISGID (0x400)
|
||||
#define S_ISUID (0x800)
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue