]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove all S_IS* and S_IF* definitions.
authorJim Meyering <jim@meyering.net>
Sat, 19 Jun 2004 12:25:04 +0000 (12:25 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 19 Jun 2004 12:25:04 +0000 (12:25 +0000)
Instead, just include "stat-macros.h".

lib/stat.c

index f8fc82ebced73a59a7b1420d0c83eb62d529dfd9..2088db391dd1c8f81c51917709f9f5bd4a8b155c 100644 (file)
@@ -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 <stdlib.h>
 # include <string.h>
 
-# 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