summaryrefslogtreecommitdiff
path: root/src/remove.c
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/remove.c
parentb7e390ca093a850cd769fb1eeade702bce63ab7d (diff)
downloadcoreutils-a5f14f167e47616fc4f74666678ede320299d5df.tar.xz
Remove all uses of `PARAMS'.
Diffstat (limited to 'src/remove.c')
-rw-r--r--src/remove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remove.c b/src/remove.c
index 430255995..d3062f2a3 100644
--- a/src/remove.c
+++ b/src/remove.c
@@ -72,7 +72,7 @@ enum Prompt_action
/* On systems with an lstat function that accepts the empty string,
arrange to make lstat calls go through the wrapper function. */
#if HAVE_LSTAT_EMPTY_STRING_BUG
-int rpl_lstat PARAMS((const char *, struct stat *));
+int rpl_lstat (const char *, struct stat *);
# define lstat(Name, Stat_buf) rpl_lstat(Name, Stat_buf)
#endif