diff options
author | Jim Meyering <jim@meyering.net> | 1997-12-31 11:01:18 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-12-31 11:01:18 +0000 |
commit | 86d2f9eaa88a46762bfd734f5d0efb7462599559 (patch) | |
tree | 6cfd04a6afe7c79e41ae497fd70d9a95afa5a7b4 /lib | |
parent | 25e06fece0cf6479f5cdaf1ef6487c133162f09d (diff) | |
download | coreutils-86d2f9eaa88a46762bfd734f5d0efb7462599559.tar.xz |
Use PARAMS, not __EXCLUDE_P.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/exclude.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/exclude.c b/lib/exclude.c index 47f8e8132..ebb599cfc 100644 --- a/lib/exclude.c +++ b/lib/exclude.c @@ -31,8 +31,8 @@ extern int errno; #include <stdio.h> #include <sys/types.h> -void *xmalloc __EXCLUDE_P ((size_t)); -void *xrealloc __EXCLUDE_P ((void *, size_t)); +void *xmalloc PARAMS ((size_t)); +void *xrealloc PARAMS ((void *, size_t)); /* Keep track of excluded file name patterns. */ |