From ae2b26dd0dec9e6f23a42bcf3a82893d7a0da975 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 18 May 2005 19:29:11 +0000 Subject: Do not include hash.h or cycle-check.h; no longer needed. (FTS): Use struct hash_table * instead of Hash_table, so that we no longer need to include hash.h here. --- lib/fts_.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/fts_.h b/lib/fts_.h index b932cf77b..5c5e1c2cb 100644 --- a/lib/fts_.h +++ b/lib/fts_.h @@ -63,8 +63,7 @@ # include # include -# include "hash.h" -# include "cycle-check.h" +# include typedef struct { struct _ftsent *fts_cur; /* current node */ @@ -116,7 +115,7 @@ typedef struct { and promptly even when the depth of a hierarchy is in the tens of thousands. Lazy checking, as done by GNU rm via cycle-check.c, wouldn't be appropriate for du. */ - Hash_table *active_dir_ht; + struct hash_table *active_dir_ht; struct cycle_check_state *cycle_state; } FTS; -- cgit v1.2.3-54-g00ecf