# HG changeset patch # User Jim Meyering # Date 883305495 0 # Node ID fea980799e044f4844552529d324406caf70738c # Parent 4ac5fba765e7303fa7d990e33e0e345609499100 (make_path) [!__STDC__]: Remove K&R-style definition. diff --git a/lib/makepath.c b/lib/makepath.c --- a/lib/makepath.c +++ b/lib/makepath.c @@ -123,7 +123,6 @@ Return 0 if ARGPATH exists as a directory with the proper ownership and permissions when done, otherwise 1. */ -#if __STDC__ int make_path (const char *argpath, int mode, @@ -132,18 +131,6 @@ gid_t group, int preserve_existing, const char *verbose_fmt_string) -#else -int -make_path (argpath, mode, parent_mode, owner, group, preserve_existing, - verbose_fmt_string) - const char *argpath; - int mode; - int parent_mode; - uid_t owner; - gid_t group; - int preserve_existing; - const char *verbose_fmt_string; -#endif { struct stat stats; int retval = 0;