From: Jim Meyering Date: Wed, 18 Jun 2003 07:48:56 +0000 (+0000) Subject: (PARAMS): Remove. All uses removed. X-Git-Tag: v5.0.1~224 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=38a0ec7565f85c0b9c46ef3e1c554cdbed77af72;p=thirdparty%2Fcoreutils.git (PARAMS): Remove. All uses removed. --- diff --git a/lib/fsusage.h b/lib/fsusage.h index e0c0db581d..bc1522ec07 100644 --- a/lib/fsusage.h +++ b/lib/fsusage.h @@ -31,15 +31,6 @@ struct fs_usage uintmax_t fsu_ffree; /* Free file nodes. */ }; -# ifndef PARAMS -# if defined PROTOTYPES || (defined __STDC__ && __STDC__) -# define PARAMS(Args) Args -# else -# define PARAMS(Args) () -# endif -# endif - -int get_fs_usage PARAMS ((const char *path, const char *disk, - struct fs_usage *fsp)); +int get_fs_usage (const char *path, const char *disk, struct fs_usage *fsp); #endif diff --git a/lib/getdate.h b/lib/getdate.h index 674c474f11..3dfae7a635 100644 --- a/lib/getdate.h +++ b/lib/getdate.h @@ -18,14 +18,6 @@ # include #endif -#ifndef PARAMS -# if defined PROTOTYPES || (defined __STDC__ && __STDC__) -# define PARAMS(Args) Args -# else -# define PARAMS(Args) () -# endif -#endif - #ifdef vms # include # include @@ -43,4 +35,4 @@ # endif #endif /* defined (vms) */ -time_t get_date PARAMS ((const char *p, const time_t *now)); +time_t get_date (const char *p, const time_t *now);