The S_ISSOCK() macro is present in POSIX 2001.12.
Signed-off-by: Paul Cercueil paul@crapouillou.net --- include/sys/stat.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/include/sys/stat.h b/include/sys/stat.h index b6480bf97..6b6ff0047 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -117,7 +117,8 @@ __BEGIN_DECLS # ifdef __S_IFLNK # define S_IFLNK __S_IFLNK # endif -# if (defined __USE_BSD || defined __USE_MISC || defined __USE_UNIX98) \ +# if (defined __USE_BSD || defined __USE_MISC || defined __USE_UNIX98 \ + || defined __USE_XOPEN2K) \ && defined __S_IFSOCK # define S_IFSOCK __S_IFSOCK # endif @@ -142,7 +143,7 @@ __BEGIN_DECLS # define S_ISLNK(mode) 0 #endif
-#if (defined __USE_BSD || defined __USE_UNIX98) \ +#if (defined __USE_BSD || defined __USE_UNIX98 || defined __USE_XOPEN2K) \ && defined __S_IFSOCK # define S_ISSOCK(mode) __S_ISTYPE((mode), __S_IFSOCK) #endif
The fchmod() function is present in POSIX 2001.12.
Signed-off-by: Paul Cercueil paul@crapouillou.net --- include/sys/stat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/sys/stat.h b/include/sys/stat.h index 6b6ff0047..99a6382a0 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -302,7 +302,7 @@ extern int lchmod (const char *__file, __mode_t __mode) #endif
/* Set file access permissions of the file FD is open on to MODE. */ -#if defined __USE_BSD || defined __USE_XOPEN_EXTENDED +#if defined __USE_BSD || defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K extern int fchmod (int __fd, __mode_t __mode) __THROW; #endif
Hi Paul, Paul Cercueil wrote,
The S_ISSOCK() macro is present in POSIX 2001.12.
Thanks, both patches applied and pushed,
best regards Waldemar
Signed-off-by: Paul Cercueil paul@crapouillou.net
include/sys/stat.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/include/sys/stat.h b/include/sys/stat.h index b6480bf97..6b6ff0047 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -117,7 +117,8 @@ __BEGIN_DECLS # ifdef __S_IFLNK # define S_IFLNK __S_IFLNK # endif -# if (defined __USE_BSD || defined __USE_MISC || defined __USE_UNIX98) \ +# if (defined __USE_BSD || defined __USE_MISC || defined __USE_UNIX98 \
|| defined __USE_XOPEN2K) \ && defined __S_IFSOCK
# define S_IFSOCK __S_IFSOCK # endif @@ -142,7 +143,7 @@ __BEGIN_DECLS # define S_ISLNK(mode) 0 #endif
-#if (defined __USE_BSD || defined __USE_UNIX98) \ +#if (defined __USE_BSD || defined __USE_UNIX98 || defined __USE_XOPEN2K) \ && defined __S_IFSOCK # define S_ISSOCK(mode) __S_ISTYPE((mode), __S_IFSOCK)
#endif
2.43.0
devel mailing list -- devel@uclibc-ng.org To unsubscribe send an email to devel-leave@uclibc-ng.org