diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-18 10:19:33 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-18 10:19:33 +0000 |
commit | 8c9de91ad1bd77b8a6edd0cfce2d827a64f3d32a (patch) | |
tree | 2a35d24c71f711c573e04eae8c6b60eaa2bbdab4 /lib | |
parent | 03f3bf246beb3e1952888b753ca35c17d8de90d7 (diff) | |
download | coreutils-8c9de91ad1bd77b8a6edd0cfce2d827a64f3d32a.tar.xz |
(PARAMS): Remove. All uses removed.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/inttostr.h | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/lib/inttostr.h b/lib/inttostr.h index 130676b42..de2b164f6 100644 --- a/lib/inttostr.h +++ b/lib/inttostr.h @@ -1,6 +1,6 @@ /* inttostr.h -- convert integers to printable strings - Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -44,14 +44,6 @@ #define INT_BUFSIZE_BOUND(t) (INT_STRLEN_BOUND (t) + 1) -#ifndef PARAMS -# if defined PROTOTYPES || defined __STDC__ -# define PARAMS(Args) Args -# else -# define PARAMS(Args) () -# endif -#endif - -char *offtostr PARAMS ((off_t, char *)); -char *imaxtostr PARAMS ((intmax_t, char *)); -char *umaxtostr PARAMS ((uintmax_t, char *)); +char *offtostr (off_t, char *); +char *imaxtostr (intmax_t, char *); +char *umaxtostr (uintmax_t, char *); |