From: Jim Meyering Date: Sun, 16 Aug 1998 15:26:20 +0000 (+0000) Subject: (PARAMS): Define and use. X-Git-Tag: FILEUTILS-3_16v~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04a86ff23ad598834b230317a487440418c12d69;p=thirdparty%2Fcoreutils.git (PARAMS): Define and use. --- diff --git a/lib/filemode.h b/lib/filemode.h index 331a5d624f..162e07a0da 100644 --- a/lib/filemode.h +++ b/lib/filemode.h @@ -1 +1,9 @@ -void mode_string (short unsigned int mode, char *str); +#ifndef PARAMS +# if defined PROTOTYPES || (defined __STDC__ && __STDC__) +# define PARAMS(Args) Args +# else +# define PARAMS(Args) () +# endif +#endif + +void mode_string PARAMS ((short unsigned int mode, char *str));