diff options
author | Jim Meyering <jim@meyering.net> | 2003-01-04 08:44:11 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-01-04 08:44:11 +0000 |
commit | a4efa35cd766978879bb99f3843baacab897f681 (patch) | |
tree | 651dc3b0d5d899b0c1d09d050d52cd3970400d87 | |
parent | 9434608b2b628d398ff1213df985ad4525f5557f (diff) | |
download | coreutils-a4efa35cd766978879bb99f3843baacab897f681.tar.xz |
[S_ISLNK]: Don't define. It's already defined in sys2.h.
-rw-r--r-- | src/remove.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/remove.c b/src/remove.c index d3062f2a3..bc838df25 100644 --- a/src/remove.c +++ b/src/remove.c @@ -1,5 +1,5 @@ /* remove.c -- core functions for removing files and directories - Copyright (C) 88, 90, 91, 1994-2002 Free Software Foundation, Inc. + Copyright (C) 88, 90, 91, 1994-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -84,10 +84,6 @@ int rpl_lstat (const char *, struct stat *); # define D_INO(dp) 1 #endif -#if !defined S_ISLNK -# define S_ISLNK(Mode) 0 -#endif - /* Initial capacity of per-directory hash table of entries that have been processed but not been deleted. */ #define HT_UNREMOVABLE_INITIAL_CAPACITY 13 |