From: Jim Meyering Date: Fri, 10 Nov 1995 14:56:21 +0000 (+0000) Subject: Protect prototyped forward dcls with __P. X-Git-Tag: TEXTUTILS-1_13F~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8014db4d6831c2cc0a8e52d1dfdb6849bdd034ca;p=thirdparty%2Fcoreutils.git Protect prototyped forward dcls with __P. --- diff --git a/src/rm.c b/src/rm.c index 3b7754e608..2f9593eeb0 100644 --- a/src/rm.c +++ b/src/rm.c @@ -51,12 +51,12 @@ int euidaccess (); int yesno (); void strip_trailing_slashes (); -static int clear_directory (struct stat *statp); -static int duplicate_entry (struct pathstack *stack, ino_t inum); -static int remove_dir (struct stat *statp); -static int remove_file (struct stat *statp); -static int rm (void); -static void usage (int status); +static int clear_directory __P ((struct stat *statp)); +static int duplicate_entry __P ((struct pathstack *stack, ino_t inum)); +static int remove_dir __P ((struct stat *statp)); +static int remove_file __P ((struct stat *statp)); +static int rm __P ((void)); +static void usage __P ((int status)); /* Name this program was run with. */ char *program_name;