From: Jim Meyering Date: Sat, 19 Jun 2004 12:23:38 +0000 (+0000) Subject: Add S_IS* definitions from filemode.c. X-Git-Tag: v5.3.0~1315 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dcbdb9f887e5fbc0cab59161ee3a1fae84dd3875;p=thirdparty%2Fcoreutils.git Add S_IS* definitions from filemode.c. (S_ISCTG): Define to zero if not already defined. (S_ISOFD): Likewise. (S_ISOFL): Likewise. --- diff --git a/lib/stat-macros.h b/lib/stat-macros.h index 787f7703ea..3d32a4d014 100644 --- a/lib/stat-macros.h +++ b/lib/stat-macros.h @@ -161,6 +161,21 @@ # 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