* lib/sys_stat.in.h (S_IXUGO, S_IRWXUGO): Update comments.
Perhaps these macros should be removed, as they’re not in either
POSIX or GNU. They could be moved to stat-macros.h, which would
be cleaner in some sense.
+2020-10-26 Paul Eggert <eggert@cs.ucla.edu>
+
+ sys_stat: update comments for S_IRWXUGO, S_IXUGO
+ * lib/sys_stat.in.h (S_IXUGO, S_IRWXUGO): Update comments.
+ Perhaps these macros should be removed, as they’re not in either
+ POSIX or GNU. They could be moved to stat-macros.h, which would
+ be cleaner in some sense.
+
2020-10-25 Bruno Haible <bruno@clisp.org>
ssfmalloc tests: Small tweaks.
# define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
#endif
-/* S_IXUGO is a common extension to POSIX. */
+/* Although S_IXUGO and S_IRWXUGO are not specified by POSIX and are
+ not implemented in GNU/Linux, some Gnulib-using apps use the macros. */
#if !S_IXUGO
# define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
#endif
-
#ifndef S_IRWXUGO
# define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
#endif