]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(PARAMS): Remove. All uses removed.
authorJim Meyering <jim@meyering.net>
Wed, 18 Jun 2003 07:48:56 +0000 (07:48 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 18 Jun 2003 07:48:56 +0000 (07:48 +0000)
lib/fsusage.h
lib/getdate.h

index e0c0db581d71ab192f2e9863a4d89d80461b748c..bc1522ec0741f10d3fa6cd9ad4a1575db7797aa4 100644 (file)
@@ -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
index 674c474f11573e66822af98c25ed26c945b99870..3dfae7a63587b4df0860a7356fb883c352020a6b 100644 (file)
 # 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);