summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-06-18 07:54:53 +0000
committerJim Meyering <jim@meyering.net>2003-06-18 07:54:53 +0000
commitd5ebb3b6fafc6d4bad5c7e01615e13315dce4607 (patch)
tree6cabc6b902402ad25491a6964d8367473a41965a /lib
parent5ff2043ef286bd345bace7e454123eaf3ac5a911 (diff)
downloadcoreutils-d5ebb3b6fafc6d4bad5c7e01615e13315dce4607.tar.xz
(PARAMS): Remove. All uses removed.
Diffstat (limited to 'lib')
-rw-r--r--lib/long-options.h23
-rw-r--r--lib/memcasecmp.h11
2 files changed, 8 insertions, 26 deletions
diff --git a/lib/long-options.h b/lib/long-options.h
index f82ff047e..6e12882bb 100644
--- a/lib/long-options.h
+++ b/lib/long-options.h
@@ -17,19 +17,10 @@
/* Written by Jim Meyering. */
-#ifndef PARAMS
-# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
-# define PARAMS(Args) Args
-# else
-# define PARAMS(Args) ()
-# endif
-#endif
-
-void
- parse_long_options PARAMS ((int _argc,
- char **_argv,
- const char *_command_name,
- const char *_package,
- const char *_version,
- const char *_authors,
- void (*_usage) (int)));
+void parse_long_options (int _argc,
+ char **_argv,
+ const char *_command_name,
+ const char *_package,
+ const char *_version,
+ const char *_authors,
+ void (*_usage) (int));
diff --git a/lib/memcasecmp.h b/lib/memcasecmp.h
index 61c39aa73..96eb2d9d5 100644
--- a/lib/memcasecmp.h
+++ b/lib/memcasecmp.h
@@ -1,12 +1,3 @@
#include <stddef.h>
-#ifndef PARAMS
-# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
-# define PARAMS(Args) Args
-# else
-# define PARAMS(Args) ()
-# endif
-#endif
-
-int
- memcasecmp PARAMS ((const void *vs1, const void *vs2, size_t n));
+int memcasecmp (const void *vs1, const void *vs2, size_t n);