* src/tools/apinames.c (panic): Accept variable number of arguments.

This commit is contained in:
Werner Lemberg 2023-03-07 07:14:36 +01:00
parent b3250f367a
commit 72a8d65218
1 changed files with 14 additions and 2 deletions

View File

@ -18,6 +18,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
@ -41,9 +42,20 @@ typedef enum OutputFormat_
static void
panic( const char* message )
panic( const char* fmt,
... )
{
fprintf( stderr, "PANIC: %s\n", message );
va_list ap;
fprintf( stderr, "PANIC: " );
va_start( ap, fmt );
vfprintf( stderr, fmt, ap );
va_end( ap );
fprintf( stderr, "\n" );
exit(2);
}