summaryrefslogtreecommitdiff
path: root/LibC/fcntl.h
diff options
context:
space:
mode:
Diffstat (limited to 'LibC/fcntl.h')
-rw-r--r--LibC/fcntl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/LibC/fcntl.h b/LibC/fcntl.h
index fd6b710823..ab0f2167e7 100644
--- a/LibC/fcntl.h
+++ b/LibC/fcntl.h
@@ -47,6 +47,8 @@ __BEGIN_DECLS
#define S_IWOTH 0002
#define S_IXOTH 0001
+#define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
+
#define S_IRWXG (S_IRWXU >> 3)
#define S_IRWXO (S_IRWXG >> 3)