summaryrefslogtreecommitdiff
path: root/lib/quote.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-06-18 07:57:26 +0000
committerJim Meyering <jim@meyering.net>2003-06-18 07:57:26 +0000
commit42cd1376ed08bcb940eac352b2755a77ad9c81e3 (patch)
tree9355ab2fd03f494a5f1a2bca4640ee83d0354db2 /lib/quote.h
parentdfbef7497d39592e479d284822f883dce8768633 (diff)
downloadcoreutils-42cd1376ed08bcb940eac352b2755a77ad9c81e3.tar.xz
(PARAMS): Remove. All uses removed.
Diffstat (limited to 'lib/quote.h')
-rw-r--r--lib/quote.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/quote.h b/lib/quote.h
index c750b1e7b..058e6b55c 100644
--- a/lib/quote.h
+++ b/lib/quote.h
@@ -16,13 +16,5 @@
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-#ifndef PARAMS
-# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
-# define PARAMS(Args) Args
-# else
-# define PARAMS(Args) ()
-# endif
-#endif
-
-char const *quote_n PARAMS ((int n, char const *name));
-char const *quote PARAMS ((char const *name));
+char const *quote_n (int n, char const *name);
+char const *quote (char const *name);