]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Use PARAMS, not __P.
authorJim Meyering <jim@meyering.net>
Sun, 21 Dec 1997 12:17:26 +0000 (12:17 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 21 Dec 1997 12:17:26 +0000 (12:17 +0000)
src/copy.h
src/cp-hash.h

index 4f80fd67639d3430b122285f106db05d3bd1b244..78482d3c7875b6435a8e901b0f98158263750c87 100644 (file)
@@ -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
index be75483d36adba4b0f6d187d02950563476eb863..eae68c5210abc936c27119426ff33b5713dde819 100644 (file)
@@ -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));