From: Jim Meyering Date: Wed, 18 Jun 2003 07:53:12 +0000 (+0000) Subject: (PARAMS): Remove. All uses removed. X-Git-Tag: v5.0.1~218 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b289f42fdf31012933729c0372403e78f3276bfc;p=thirdparty%2Fcoreutils.git (PARAMS): Remove. All uses removed. Do not include config.h; no longer needed. Anyway, config.h should always be included before any other file. --- diff --git a/lib/strverscmp.h b/lib/strverscmp.h index bb1ea1b0a1..fc01989dbf 100644 --- a/lib/strverscmp.h +++ b/lib/strverscmp.h @@ -3,18 +3,6 @@ #ifndef STRVERSCMP_H_ # define STRVERSCMP_H_ -# if HAVE_CONFIG_H -# include -# endif - -# ifndef PARAMS -# if defined PROTOTYPES || (defined __STDC__ && __STDC__) -# define PARAMS(Args) Args -# else -# define PARAMS(Args) () -# endif -# endif - -int strverscmp PARAMS ((const char*, const char*)); +int strverscmp (const char *, const char *); #endif /* not STRVERSCMP_H_ */