summaryrefslogtreecommitdiff
path: root/include/fcntl.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-03-08 12:35:35 -0500
committerRich Felker <dalias@aerifal.cx>2011-03-08 12:35:35 -0500
commitac12eb91bd7aa6f1f1642de1350c4f29ea0f4d08 (patch)
tree3beae2cffade3dd6cc71551eef4f7a6c20fd53e9 /include/fcntl.h
parent31e06075d5a71b53461638ee871bfb6163e20dd5 (diff)
downloadmusl-ac12eb91bd7aa6f1f1642de1350c4f29ea0f4d08.tar.gz
fcntl.h should make availabel the mode constants from sys/stat.h
also remove some legacy nonsense that crept in.
Diffstat (limited to 'include/fcntl.h')
-rw-r--r--include/fcntl.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/fcntl.h b/include/fcntl.h
index 61a6cb55..016653cf 100644
--- a/include/fcntl.h
+++ b/include/fcntl.h
@@ -36,6 +36,24 @@ int posix_fallocate(int, off_t, off_t);
#define SEEK_CUR 1
#define SEEK_END 2
+#ifndef S_IRUSR
+#define S_ISUID 04000
+#define S_ISGID 02000
+#define S_ISVTX 01000
+#define S_IRUSR 0400
+#define S_IWUSR 0200
+#define S_IXUSR 0100
+#define S_IRWXU 0700
+#define S_IRGRP 0040
+#define S_IWGRP 0020
+#define S_IXGRP 0010
+#define S_IRWXG 0070
+#define S_IROTH 0004
+#define S_IWOTH 0002
+#define S_IXOTH 0001
+#define S_IRWXO 0007
+#endif
+
#ifdef __cplusplus
}
#endif