diff options
author | Jim Meyering <jim@meyering.net> | 1995-11-10 14:56:21 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-11-10 14:56:21 +0000 |
commit | 8014db4d6831c2cc0a8e52d1dfdb6849bdd034ca (patch) | |
tree | 196f41fcc23713ee406d486cee6cd6f126a1212c /src | |
parent | c6394074a8f80fe2879195eab6a275dad39c1789 (diff) | |
download | coreutils-8014db4d6831c2cc0a8e52d1dfdb6849bdd034ca.tar.xz |
Protect prototyped forward dcls with __P.
Diffstat (limited to 'src')
-rw-r--r-- | src/rm.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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; |