summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-11-09 23:41:10 +0000
committerJim Meyering <jim@meyering.net>1995-11-09 23:41:10 +0000
commitb7b00aad08d051cda6bfb96d64462369b4defa23 (patch)
tree301b25ca6a8f260c86b499290fadd50b6a6d7152 /src/install.c
parentec2a94a41079f023443be393594d12e8315a706e (diff)
downloadcoreutils-b7b00aad08d051cda6bfb96d64462369b4defa23.tar.xz
Protect prototypes with __P.
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/install.c b/src/install.c
index 65dc8c49a..1dd7ed9a6 100644
--- a/src/install.c
+++ b/src/install.c
@@ -99,13 +99,13 @@ int safe_read ();
int full_write ();
int isdir ();
-static int change_attributes (char *path, int no_need_to_chown);
-static int copy_file (char *from, char *to, int *to_created);
-static int install_file_in_dir (char *from, char *to_dir);
-static int install_file_in_file (char *from, char *to);
-static void get_ids (void);
-static void strip (char *path);
-static void usage (int status);
+static int change_attributes __P ((char *path, int no_need_to_chown));
+static int copy_file __P ((char *from, char *to, int *to_created));
+static int install_file_in_dir __P ((char *from, char *to_dir));
+static int install_file_in_file __P ((char *from, char *to));
+static void get_ids __P ((void));
+static void strip __P ((char *path));
+static void usage __P ((int status));
/* The name this program was run with, for error messages. */
char *program_name;