summaryrefslogtreecommitdiff
path: root/lib/fsusage.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-06-18 07:48:56 +0000
committerJim Meyering <jim@meyering.net>2003-06-18 07:48:56 +0000
commit38a0ec7565f85c0b9c46ef3e1c554cdbed77af72 (patch)
tree085285b3431e6a6587f6c3cc487d2c8994d0eef1 /lib/fsusage.h
parentcee8853f77e41819fb01a30d9abf6eba1055a9bd (diff)
downloadcoreutils-38a0ec7565f85c0b9c46ef3e1c554cdbed77af72.tar.xz
(PARAMS): Remove. All uses removed.
Diffstat (limited to 'lib/fsusage.h')
-rw-r--r--lib/fsusage.h11
1 files changed, 1 insertions, 10 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