From: Jim Meyering Date: Sun, 7 Sep 2003 17:33:42 +0000 (+0000) Subject: (D_INO, ENABLE_CYCLE_CHECK) [D_INO_IN_DIRENT]: X-Git-Tag: v5.0.91~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d477526690691cef5d77c34f61a0c3a3a1e51cb3;p=thirdparty%2Fcoreutils.git (D_INO, ENABLE_CYCLE_CHECK) [D_INO_IN_DIRENT]: Don't define. These symbols are no longer used. --- diff --git a/src/remove.c b/src/remove.c index 7c79d10bfe..387a27bd3f 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