Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/include/compat/sys/stat.h
6178 views
1
#ifndef _COMPAT_STAT_H
2
#define _COMPAT_STAT_H
3
4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7
8
#include_next <sys/stat.h>
9
10
#define S_IRWXUGO (S_IRWXU|S_IRWXG|S_IRWXO)
11
#define S_IALLUGO (S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO)
12
#define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH)
13
#define S_IWUGO (S_IWUSR|S_IWGRP|S_IWOTH)
14
#define S_IXUGO (S_IXUSR|S_IXGRP|S_IXOTH)
15
16
#ifdef __cplusplus
17
}
18
#endif
19
20
#endif
21
22