Commit 3fa79010 authored by Neil Conway's avatar Neil Conway

This patch changes the use of varargs.h to stdarg.h as

required by modern versions of GCC.

Niels Breet
parent ea208aca
......@@ -5,7 +5,7 @@
** This is used to print out error messages and exit
*/
#include <varargs.h>
#include <stdarg.h>
#include <signal.h>
#include <stdio.h>
#include <errno.h>
......@@ -19,15 +19,14 @@
/*VARARGS*/
void
halt(va_alist)
va_dcl
halt(const char *path, ...)
{
va_list arg_ptr;
char *format,
*pstr;
void (*sig_func) ();
va_start(arg_ptr);
va_start(arg_ptr, path);
format = va_arg(arg_ptr, char *);
if (strncmp(format, "PERROR", 6) != 0)
vfprintf(stderr, format, arg_ptr);
......
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