]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Add S_IS* definitions from filemode.c.
authorJim Meyering <jim@meyering.net>
Sat, 19 Jun 2004 12:23:38 +0000 (12:23 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 19 Jun 2004 12:23:38 +0000 (12:23 +0000)
(S_ISCTG): Define to zero if not already defined.
(S_ISOFD): Likewise.
(S_ISOFL): Likewise.

lib/stat-macros.h

index 787f7703eabfb0e3f22d5d844aa112d24af3d53a..3d32a4d01407563fb7ace8aca6fa9f504a05679b 100644 (file)
 #  endif
 # endif
 
+/* contiguous */
+# ifndef S_ISCTG
+#  define S_ISCTG(p) 0
+# endif
+
+/* Cray DMF (data migration facility): off line, with data  */
+# ifndef S_ISOFD
+#  define S_ISOFD(p) 0
+# endif
+
+/* Cray DMF (data migration facility): off line, with no data  */
+# ifndef S_ISOFL
+#  define S_ISOFL(p) 0
+# endif
+
 /* If any of the following are undefined,
    define them to their de facto standard values.  */
 # if !S_ISUID