summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-03-19 08:14:02 +0000
committerJim Meyering <jim@meyering.net>2003-03-19 08:14:02 +0000
commit0cc6e2962d6d2b6637a571869c6ca01dc4bcf6e4 (patch)
treee7db3a7adad9724e81d6ab18e0e6f7f478645924 /lib
parent37e0f7ac188795b9625904f2ed5349f4fadbb5a2 (diff)
downloadcoreutils-0cc6e2962d6d2b6637a571869c6ca01dc4bcf6e4.tar.xz
Remove uses of `PARAMS'.
Diffstat (limited to 'lib')
-rw-r--r--lib/exclude.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/exclude.c b/lib/exclude.c
index 9337e74a9..d2c6502df 100644
--- a/lib/exclude.c
+++ b/lib/exclude.c
@@ -1,6 +1,6 @@
/* exclude.c -- exclude file names
- Copyright (C) 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002 Free
+ Copyright (C) 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003 Free
Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
@@ -173,7 +173,7 @@ excluded_filename (struct exclude const *ex, char const *f)
int options = exclude[i].options;
if (excluded == !! (options & EXCLUDE_INCLUDE))
{
- int (*matcher) PARAMS ((char const *, char const *, int)) =
+ int (*matcher) (char const *, char const *, int) =
(options & EXCLUDE_WILDCARDS
? fnmatch
: fnmatch_no_wildcards);
@@ -220,8 +220,7 @@ add_exclude (struct exclude *ex, char const *pattern, int options)
on failure, 0 on success. */
int
-add_exclude_file (void (*add_func) PARAMS ((struct exclude *,
- char const *, int)),
+add_exclude_file (void (*add_func) (struct exclude *, char const *, int),
struct exclude *ex, char const *filename, int options,
char line_end)
{