diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-18 07:53:12 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-18 07:53:12 +0000 |
commit | b289f42fdf31012933729c0372403e78f3276bfc (patch) | |
tree | f19d1f10167ca0ce454d10f95350915b9e59cbc2 /lib | |
parent | de4077cbe314db0e1ec4089b32232337b5aa760c (diff) | |
download | coreutils-b289f42fdf31012933729c0372403e78f3276bfc.tar.xz |
(PARAMS): Remove. All uses removed.
Do not include config.h; no longer needed.
Anyway, config.h should always be included before any other file.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strverscmp.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/lib/strverscmp.h b/lib/strverscmp.h index bb1ea1b0a..fc01989db 100644 --- a/lib/strverscmp.h +++ b/lib/strverscmp.h @@ -3,18 +3,6 @@ #ifndef STRVERSCMP_H_ # define STRVERSCMP_H_ -# if HAVE_CONFIG_H -# include <config.h> -# 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_ */ |