From: Jim Meyering Date: Sun, 14 Sep 1997 03:39:26 +0000 (+0000) Subject: (PARAMS): Define. X-Git-Tag: TEXTUTILS-1_22a~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b208989a7502c770c33269a851da3a89fe3974f3;p=thirdparty%2Fcoreutils.git (PARAMS): Define. (rm): Guard prototype in forward dcl with PARAMS. --- diff --git a/src/rm.c b/src/rm.c index 8302ae4d22..125d25165b 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;