summaryrefslogtreecommitdiff
path: root/src/copy.h
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/copy.h
parentb7e390ca093a850cd769fb1eeade702bce63ab7d (diff)
downloadcoreutils-a5f14f167e47616fc4f74666678ede320299d5df.tar.xz
Remove all uses of `PARAMS'.
Diffstat (limited to 'src/copy.h')
-rw-r--r--src/copy.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/copy.h b/src/copy.h
index eb13062b0..d21b47875 100644
--- a/src/copy.h
+++ b/src/copy.h
@@ -178,7 +178,7 @@ int lstat ();
on systems with an lstat function that does not dereference symlinks
that are specified with a trailing slash. */
# if ! LSTAT_FOLLOWS_SLASHED_SYMLINK
-int rpl_lstat PARAMS((const char *, struct stat *));
+int rpl_lstat (const char *, struct stat *);
# undef lstat
# define lstat rpl_lstat
# endif
@@ -189,7 +189,7 @@ int rename ();
on systems with a rename function that fails for a source path
specified with a trailing slash. */
# if RENAME_TRAILING_SLASH_BUG
-int rpl_rename PARAMS((const char *, const char *));
+int rpl_rename (const char *, const char *);
# undef rename
# define rename rpl_rename
# endif
@@ -200,8 +200,8 @@ copy PARAMS ((const char *src_path, const char *dst_path,
int *copy_into_self, int *rename_succeeded));
void
-dest_info_init PARAMS ((struct cp_options *));
+dest_info_init (struct cp_options *);
void
-src_info_init PARAMS ((struct cp_options *));
+src_info_init (struct cp_options *);
#endif