summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/copy.h4
-rw-r--r--src/cp-hash.h10
2 files changed, 7 insertions, 7 deletions
diff --git a/src/copy.h b/src/copy.h
index 4f80fd676..78482d3c7 100644
--- a/src/copy.h
+++ b/src/copy.h
@@ -86,7 +86,7 @@ struct cp_options
};
int
-copy __P ((const char *src_path, const char *dst_path,
- int nonexistent_dst, const struct cp_options *options));
+copy PARAMS ((const char *src_path, const char *dst_path,
+ int nonexistent_dst, const struct cp_options *options));
#endif
diff --git a/src/cp-hash.h b/src/cp-hash.h
index be75483d3..eae68c521 100644
--- a/src/cp-hash.h
+++ b/src/cp-hash.h
@@ -2,8 +2,8 @@
character identifies the inode as being new. */
extern char new_file;
-void hash_init __P ((unsigned int modulus, unsigned int entry_tab_size));
-void forget_all __P ((void));
-char *hash_insert __P ((ino_t ino, dev_t dev, const char *node));
-char *remember_copied __P ((const char *node, ino_t ino, dev_t dev));
-int remember_created __P ((const char *path));
+void hash_init PARAMS ((unsigned int modulus, unsigned int entry_tab_size));
+void forget_all PARAMS ((void));
+char *hash_insert PARAMS ((ino_t ino, dev_t dev, const char *node));
+char *remember_copied PARAMS ((const char *node, ino_t ino, dev_t dev));
+int remember_created PARAMS ((const char *path));