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

index 130676b42a8e25deac1cf2b47a4d919f7b070202..de2b164f6b1a06e04b5a2a6e8ff8a77b4c9b3c26 100644 (file)
@@ -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
 
 #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 *);