summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-12-15 20:54:29 +0000
committerJim Meyering <jim@meyering.net>2002-12-15 20:54:29 +0000
commita5f14f167e47616fc4f74666678ede320299d5df (patch)
tree5fc7a653b773e97041f9183101f45fbfc6548514 /src/install.c
parentb7e390ca093a850cd769fb1eeade702bce63ab7d (diff)
downloadcoreutils-a5f14f167e47616fc4f74666678ede320299d5df.tar.xz
Remove all uses of `PARAMS'.
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/install.c b/src/install.c
index c27c3b7ee..0204eadeb 100644
--- a/src/install.c
+++ b/src/install.c
@@ -78,19 +78,19 @@ int isdir ();
int stat ();
-static int change_timestamps PARAMS ((const char *from, const char *to));
-static int change_attributes PARAMS ((const char *path));
-static int copy_file PARAMS ((const char *from, const char *to,
- const struct cp_options *x));
-static int install_file_to_path PARAMS ((const char *from, const char *to,
- const struct cp_options *x));
-static int install_file_in_dir PARAMS ((const char *from, const char *to_dir,
- const struct cp_options *x));
-static int install_file_in_file PARAMS ((const char *from, const char *to,
- const struct cp_options *x));
-static void get_ids PARAMS ((void));
-static void strip PARAMS ((const char *path));
-void usage PARAMS ((int status));
+static int change_timestamps (const char *from, const char *to);
+static int change_attributes (const char *path);
+static int copy_file (const char *from, const char *to,
+ const struct cp_options *x);
+static int install_file_to_path (const char *from, const char *to,
+ const struct cp_options *x);
+static int install_file_in_dir (const char *from, const char *to_dir,
+ const struct cp_options *x);
+static int install_file_in_file (const char *from, const char *to,
+ const struct cp_options *x);
+static void get_ids (void);
+static void strip (const char *path);
+void usage (int status);
/* The name this program was run with, for error messages. */
char *program_name;