From ab621d9fa1e854418c7bffb7fbf35a4c6c3f8620 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 28 Jun 2006 22:24:54 +0000 Subject: (CLOSEDIR): Remove. All uses changed to closedir. --- lib/ChangeLog | 5 +++++ lib/savedir.c | 11 ++--------- 2 files changed, 7 insertions(+), 9 deletions(-) (limited to 'lib') diff --git a/lib/ChangeLog b/lib/ChangeLog index 4cf0a6dc0..6b50d62f3 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2006-06-28 Derek R. Price + + * savedir.c (CLOSEDIR): Remove. All uses changed to closedir. + Autoconf 2.60 says this stuff was obsolete. + 2006-06-20 Paul Eggert * openat.c (openat): Use ?:, not if, to work around GCC bug 4210 diff --git a/lib/savedir.c b/lib/savedir.c index b08f32b79..d5ced6cd3 100644 --- a/lib/savedir.c +++ b/lib/savedir.c @@ -1,6 +1,6 @@ /* savedir.c -- save the list of files in a directory in a string - Copyright 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free + Copyright 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify @@ -44,13 +44,6 @@ # endif #endif -#ifdef CLOSEDIR_VOID -/* Fake a return value. */ -# define CLOSEDIR(d) (closedir (d), 0) -#else -# define CLOSEDIR(d) closedir (d) -#endif - #include #include #include @@ -117,7 +110,7 @@ savedirstream (DIR *dirp) } name_space[used] = '\0'; save_errno = errno; - if (CLOSEDIR (dirp) != 0) + if (closedir (dirp) != 0) save_errno = errno; if (save_errno != 0) { -- cgit v1.2.3-54-g00ecf