blob: 1bc0267dd5c7d489c74b1d4c49be3e0006634853 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
--- builtins/common.c.orig Fri Aug 29 12:14:26 2003
+++ builtins/common.c Fri Aug 29 12:18:31 2003
@@ -20,7 +20,7 @@
#include <sys/types.h>
#include "../posixstat.h"
#if defined (HAVE_VFPRINTF)
-#include <varargs.h>
+#include <stdarg.h>
#endif /* VFPRINTF */
#if defined (HAVE_STRING_H)
@@ -114,16 +114,14 @@
shell. */
#if defined (HAVE_VFPRINTF)
void
-builtin_error (va_alist)
- va_dcl
+builtin_error (char *format, ...)
{
- char *format;
va_list args;
if (this_command_name && *this_command_name)
fprintf (stderr, "%s: ", this_command_name);
- va_start (args);
+ va_start (args, format);
format = va_arg (args, char *);
vfprintf (stderr, format, args);
va_end (args);
|