]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libiberity: ANSIfy test-demangle.c
authorAndrew Pinski <quic_apinski@quicinc.com>
Sat, 16 Nov 2024 18:52:23 +0000 (10:52 -0800)
committerAndrew Pinski <quic_apinski@quicinc.com>
Sat, 16 Nov 2024 19:10:48 +0000 (11:10 -0800)
Some of the function definitions used K&R style definitions (but not all).
This just moves them all to be ANSI C

Bootstrapped and tested on x86_64-linux-gnu.

libiberty/ChangeLog:

* testsuite/test-demangle.c (get_line): Change K&R style
definition into ANSI C90 definitions.
(fail): Likewise.
(main): Likewise.

Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
libiberty/testsuite/test-demangle.c

index abe9015c31630a3a6f3c423ee724fa8563570c32..f79cd89277a2a37188783490610b0269a76c852a 100644 (file)
@@ -49,8 +49,7 @@ static unsigned int lineno;
 #define LINELEN 80
 
 static void
-get_line(buf)
-     struct line *buf;
+get_line(struct line *buf)
 {
   char *data = buf->data;
   size_t alloc = buf->alloced;
@@ -134,12 +133,8 @@ protect_end (const char * s)
 }
 
 static void
-fail (lineno, opts, in, out, exp)
-     int lineno;
-     const char *opts;
-     const char *in;
-     const char *out;
-     const char *exp;
+fail (int lineno, const char *opts, const char *in,
+      const char *out, const char *exp)
 {
   printf ("\
 FAIL at line %d, options %s:\n\
@@ -170,9 +165,7 @@ exp: %s\n",
 */
 
 int
-main(argc, argv)
-     int argc;
-     char **argv;
+main(int argc, char **argv)
 {
   enum demangling_styles style = auto_demangling;
   int no_params;