summaryrefslogtreecommitdiff
path: root/src/remove.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-09-07 17:33:42 +0000
committerJim Meyering <jim@meyering.net>2003-09-07 17:33:42 +0000
commitd477526690691cef5d77c34f61a0c3a3a1e51cb3 (patch)
tree04fdfe80291f8f9b778dd5c6647ae33b2962218e /src/remove.c
parenta4f98360e4e7974263212e09bab00f7576399153 (diff)
downloadcoreutils-d477526690691cef5d77c34f61a0c3a3a1e51cb3.tar.xz
(D_INO, ENABLE_CYCLE_CHECK) [D_INO_IN_DIRENT]:
Don't define. These symbols are no longer used.
Diffstat (limited to 'src/remove.c')
-rw-r--r--src/remove.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/remove.c b/src/remove.c
index 7c79d10bf..387a27bd3 100644
--- a/src/remove.c
+++ b/src/remove.c
@@ -79,14 +79,6 @@ int rpl_lstat (const char *, struct stat *);
# define lstat(Name, Stat_buf) rpl_lstat(Name, Stat_buf)
#endif
-#ifdef D_INO_IN_DIRENT
-# define D_INO(dp) ((dp)->d_ino)
-# define ENABLE_CYCLE_CHECK
-#else
-/* Some systems don't have inodes, so fake them to avoid lots of ifdefs. */
-# define D_INO(dp) 1
-#endif
-
/* Initial capacity of per-directory hash table of entries that have
been processed but not been deleted. */
#define HT_UNREMOVABLE_INITIAL_CAPACITY 13