From: Jim Meyering Date: Wed, 18 Jun 2003 10:19:33 +0000 (+0000) Subject: (PARAMS): Remove. All uses removed. X-Git-Tag: v5.0.1~197 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c9de91ad1bd77b8a6edd0cfce2d827a64f3d32a;p=thirdparty%2Fcoreutils.git (PARAMS): Remove. All uses removed. --- diff --git a/lib/inttostr.h b/lib/inttostr.h index 130676b42a..de2b164f6b 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 *);