Commit fd2c2b2b by Doug Evans

(fatal, error): Fix declarations (make dependant on HAVE_VPRINTF).

From-SVN: r6545
parent b9a295c0
......@@ -214,8 +214,14 @@ static void give_switch PROTO((int, int));
static void pfatal_with_name PROTO((char *));
static void perror_with_name PROTO((char *));
static void perror_exec PROTO((char *));
#ifdef HAVE_VPRINTF
static void fatal PROTO((char *, ...));
static void error PROTO((char *, ...));
#else
/* We must not provide any prototype here, even if ANSI C. */
static void fatal PROTO(());
static void error PROTO(());
#endif
void fancy_abort ();
char *xmalloc ();
......
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