Commit bd1a74b1 by Richard Kenner

(fatal_perror, fatal, error): Declare all args as char *.

From-SVN: r8078
parent 42fbe27f
...@@ -327,7 +327,7 @@ my_exit (status) ...@@ -327,7 +327,7 @@ my_exit (status)
static void static void
fatal_perror (string, arg1, arg2, arg3) fatal_perror (string, arg1, arg2, arg3)
char *string; char *string, *arg1, *arg2, *arg3;
{ {
int e = errno; int e = errno;
...@@ -341,7 +341,7 @@ fatal_perror (string, arg1, arg2, arg3) ...@@ -341,7 +341,7 @@ fatal_perror (string, arg1, arg2, arg3)
static void static void
fatal (string, arg1, arg2, arg3) fatal (string, arg1, arg2, arg3)
char *string; char *string, *arg1, *arg2, *arg3;
{ {
fprintf (stderr, "collect2: "); fprintf (stderr, "collect2: ");
fprintf (stderr, string, arg1, arg2, arg3); fprintf (stderr, string, arg1, arg2, arg3);
...@@ -353,7 +353,7 @@ fatal (string, arg1, arg2, arg3) ...@@ -353,7 +353,7 @@ fatal (string, arg1, arg2, arg3)
static void static void
error (string, arg1, arg2, arg3, arg4) error (string, arg1, arg2, arg3, arg4)
char *string; char *string, *arg1, *arg2, *arg3, *arg4;
{ {
fprintf (stderr, "collect2: "); fprintf (stderr, "collect2: ");
fprintf (stderr, string, arg1, arg2, arg3, arg4); fprintf (stderr, string, arg1, arg2, arg3, arg4);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment