]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(S_IRWXUGO): Define here, instead.
authorJim Meyering <jim@meyering.net>
Fri, 8 Sep 2000 09:01:32 +0000 (09:01 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 8 Sep 2000 09:01:32 +0000 (09:01 +0000)
src/sys2.h

index 936fd8afd26c013f2627660837247b35e90c8006..93c297d25a853b23afc135a69ef7ad5eb02ae745 100644 (file)
 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
 #endif
 
+#ifndef S_IRWXUGO
+# define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
+#endif
+
 /* All the mode bits that can be affected by chmod.  */
 #define CHMOD_MODE_BITS \
   (S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO)