From: Jim Meyering Date: Sun, 21 Dec 1997 12:17:26 +0000 (+0000) Subject: Use PARAMS, not __P. X-Git-Tag: FILEUTILS-3_16h~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ed365fb82df5b0365aa58cad98ba6f03fa737ca;p=thirdparty%2Fcoreutils.git Use PARAMS, not __P. --- 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));