From: Jim Meyering Date: Sat, 19 Jun 2004 12:25:04 +0000 (+0000) Subject: Remove all S_IS* and S_IF* definitions. X-Git-Tag: v5.3.0~1312 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0056eb663eeb70e78a93367d1bb3235936e31969;p=thirdparty%2Fcoreutils.git Remove all S_IS* and S_IF* definitions. Instead, just include "stat-macros.h". --- diff --git a/lib/stat.c b/lib/stat.c index f8fc82ebce..2088db391d 100644 --- a/lib/stat.c +++ b/lib/stat.c @@ -3,7 +3,7 @@ has this bug. Also work around a deficiency in Solaris systems (up to at least Solaris 9) regarding the semantics of `lstat ("symlink/", sbuf).' - Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free + Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify @@ -34,18 +34,7 @@ extern int errno; # include # include -# ifdef STAT_MACROS_BROKEN -# undef S_ISLNK -# endif - -# ifndef S_ISLNK -# ifdef S_IFLNK -# define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) -# else -# define S_ISLNK(m) 0 -# endif -# endif - +# include "stat-macros.h" # include "xalloc.h" /* lstat works differently on Linux and Solaris systems. POSIX (see