Browse Source

sys/stat.h: Make S_ISSOCK() available if __USE_XOPEN2K

The S_ISSOCK() macro is present in POSIX 2001.12.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Paul Cercueil 3 months ago
parent
commit
8f60201026
1 changed files with 3 additions and 2 deletions
  1. 3 2
      include/sys/stat.h

+ 3 - 2
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