From b208989a7502c770c33269a851da3a89fe3974f3 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 14 Sep 1997 03:39:26 +0000 Subject: (PARAMS): Define. (rm): Guard prototype in forward dcl with PARAMS. --- src/rm.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'src/rm.c') diff --git a/src/rm.c b/src/rm.c index 8302ae4d2..125d25165 100644 --- a/src/rm.c +++ b/src/rm.c @@ -30,6 +30,14 @@ #include "obstack.h" #include "oa-hash.h" +#ifndef PARAMS +# if defined (__GNUC__) || __STDC__ +# define PARAMS(args) args +# else +# define PARAMS(args) () +# endif +#endif + #define obstack_chunk_alloc malloc #define obstack_chunk_free free @@ -105,7 +113,9 @@ char *xmalloc (); char *xrealloc (); int yesno (); -static enum RM_status rm (struct File_spec *fs, int user_specified_name); +/* Forward dcl for recursively called function. */ +static enum RM_status rm PARAMS ((struct File_spec *fs, + int user_specified_name)); /* Name this program was run with. */ char *program_name; -- cgit v1.2.3-54-g00ecf