From 1ed365fb82df5b0365aa58cad98ba6f03fa737ca Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 21 Dec 1997 12:17:26 +0000 Subject: [PATCH] Use PARAMS, not __P. --- src/copy.h | 4 ++-- src/cp-hash.h | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/copy.h b/src/copy.h index 4f80fd6763..78482d3c78 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 be75483d36..eae68c5210 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)); -- 2.47.2