summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-12-16 15:32:32 +0000
committerJim Meyering <jim@meyering.net>1997-12-16 15:32:32 +0000
commit03f9f3dbec05c3b5fad721f5be0203c57c455d0f (patch)
tree8abb75825016abd7db2d8c6af56b58f6a04dc083 /src/install.c
parentfc22546441c3f0460fd93ec9c0ad6cc6ef2c9698 (diff)
downloadcoreutils-03f9f3dbec05c3b5fad721f5be0203c57c455d0f.tar.xz
s/__P/PARAMS/g
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/install.c b/src/install.c
index 360264a66..e0c4cc7ba 100644
--- a/src/install.c
+++ b/src/install.c
@@ -117,14 +117,15 @@ int full_write ();
int isdir ();
enum backup_type get_version ();
-static int change_timestamps __P ((const char *from, const char *to));
-static int change_attributes __P ((const char *path, int no_need_to_chown));
-static int copy_file __P ((const char *from, const char *to, int *to_created));
-static int install_file_in_dir __P ((const char *from, const char *to_dir));
-static int install_file_in_file __P ((const char *from, const char *to));
-static void get_ids __P ((void));
-static void strip __P ((const char *path));
-static void usage __P ((int status));
+static int change_timestamps PARAMS ((const char *from, const char *to));
+static int change_attributes PARAMS ((const char *path, int no_need_to_chown));
+static int copy_file PARAMS ((const char *from, const char *to,
+ int *to_created));
+static int install_file_in_dir PARAMS ((const char *from, const char *to_dir));
+static int install_file_in_file PARAMS ((const char *from, const char *to));
+static void get_ids PARAMS ((void));
+static void strip PARAMS ((const char *path));
+static void usage PARAMS ((int status));
/* The name this program was run with, for error messages. */
char *program_name;