diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-18 07:48:56 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-18 07:48:56 +0000 |
commit | 38a0ec7565f85c0b9c46ef3e1c554cdbed77af72 (patch) | |
tree | 085285b3431e6a6587f6c3cc487d2c8994d0eef1 | |
parent | cee8853f77e41819fb01a30d9abf6eba1055a9bd (diff) | |
download | coreutils-38a0ec7565f85c0b9c46ef3e1c554cdbed77af72.tar.xz |
(PARAMS): Remove. All uses removed.
-rw-r--r-- | lib/fsusage.h | 11 | ||||
-rw-r--r-- | lib/getdate.h | 10 |
2 files changed, 2 insertions, 19 deletions
diff --git a/lib/fsusage.h b/lib/fsusage.h index e0c0db581..bc1522ec0 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 674c474f1..3dfae7a63 100644 --- a/lib/getdate.h +++ b/lib/getdate.h @@ -18,14 +18,6 @@ # include <config.h> #endif -#ifndef PARAMS -# if defined PROTOTYPES || (defined __STDC__ && __STDC__) -# define PARAMS(Args) Args -# else -# define PARAMS(Args) () -# endif -#endif - #ifdef vms # include <types.h> # include <time.h> @@ -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); |