summaryrefslogtreecommitdiff
path: root/src/test.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-12-21 22:30:30 +0000
committerJim Meyering <jim@meyering.net>1997-12-21 22:30:30 +0000
commit2e308957d452b440cf404b914ce1cb53c9e739a9 (patch)
treea2a8d74c23d6adaf4bee5c302321d63cc2345772 /src/test.c
parent239125152797764748f3a3b65805d44cfd2a7536 (diff)
downloadcoreutils-2e308957d452b440cf404b914ce1cb53c9e739a9.tar.xz
s/__P/PARAMS/
Diffstat (limited to 'src/test.c')
-rw-r--r--src/test.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/test.c b/src/test.c
index 11a777ae5..28059aab8 100644
--- a/src/test.c
+++ b/src/test.c
@@ -106,18 +106,18 @@ static int pos; /* The offset of the current argument in ARGV. */
static int argc; /* The number of arguments present in ARGV. */
static char **argv; /* The argument list. */
-static int unop __P ((int op));
-static int binop __P ((char *s));
-static int unary_operator __P ((void));
-static int binary_operator __P ((void));
-static int two_arguments __P ((void));
-static int three_arguments __P ((void));
-static int posixtest __P ((void));
-
-static int expr __P ((void));
-static int term __P ((void));
-static int and __P ((void));
-static int or __P ((void));
+static int unop PARAMS ((int op));
+static int binop PARAMS ((char *s));
+static int unary_operator PARAMS ((void));
+static int binary_operator PARAMS ((void));
+static int two_arguments PARAMS ((void));
+static int three_arguments PARAMS ((void));
+static int posixtest PARAMS ((void));
+
+static int expr PARAMS ((void));
+static int term PARAMS ((void));
+static int and PARAMS ((void));
+static int or PARAMS ((void));
#if __GNUC__ >= 2 && defined (__GNUC_MINOR__) \
&& __GNUC_MINOR__ >= 5 && !defined (__STRICT_ANSI__)
@@ -126,8 +126,8 @@ static int or __P ((void));
# define NO_RETURN_ATTRIBUTE /* empty */
#endif
-static void test_syntax_error __P ((char *format, char *arg)) NO_RETURN_ATTRIBUTE;
-static void beyond __P ((void)) NO_RETURN_ATTRIBUTE;
+static void test_syntax_error PARAMS ((char *format, char *arg)) NO_RETURN_ATTRIBUTE;
+static void beyond PARAMS ((void)) NO_RETURN_ATTRIBUTE;
static void
test_syntax_error (char *format, char *arg)