From: Jim Meyering Date: Sat, 17 Apr 2004 14:01:56 +0000 (+0000) Subject: (ds_init, ds_free): Declare functions to be `static'. X-Git-Tag: v5.3.0~1759 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c283745f2e4f0515d8e4d183cc676b4980f2bf8c;p=thirdparty%2Fcoreutils.git (ds_init, ds_free): Declare functions to be `static'. --- diff --git a/src/remove.c b/src/remove.c index b1624f31fa..0e9c3e34d3 100644 --- a/src/remove.c +++ b/src/remove.c @@ -146,7 +146,7 @@ struct dirstack_state }; typedef struct dirstack_state Dirstack_state; -Dirstack_state * +static Dirstack_state * ds_init () { Dirstack_state *ds = XMALLOC (struct dirstack_state, 1); @@ -156,7 +156,7 @@ ds_init () return ds; } -void +static void ds_free (Dirstack_state *ds) { obstack_free (&ds->dir_stack, NULL); @@ -503,12 +503,12 @@ AD_is_removable (Dirstack_state const *ds, char const *file) } /* A wrapper for readdir so that callers don't see entries for `.' or `..'. */ -static struct dirent * +static struct dirent const * readdir_ignoring_dotdirs (DIR *dirp) { while (1) { - struct dirent *dp = readdir (dirp); + struct dirent const *dp = readdir (dirp); if (dp == NULL || ! DOT_OR_DOTDOT (dp->d_name)) return dp; } @@ -520,7 +520,7 @@ static bool is_empty_dir (char const *dir) { DIR *dirp = opendir (dir); - struct dirent *dp; + struct dirent const *dp; int saved_errno; if (dirp == NULL) @@ -822,7 +822,7 @@ remove_cwd_entries (Dirstack_state *ds, char **subdir, struct stat *subdir_sb, while (1) { - struct dirent *dp; + struct dirent const *dp; enum RM_status tmp_status; const char *f;