1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-26 19:55:26 +00:00
uemacs/usage.c

23 lines
397 B
C
Raw Normal View History

#include "usage.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
static void report(const char* prefix, const char *err, va_list params)
{
char msg[4096];
vsnprintf(msg, sizeof(msg), err, params);
fprintf(stderr, "%s%s\n", prefix, msg);
}
void die(const char* err, ...)
{
va_list params;
va_start(params, err);
report("fatal: ", err, params);
va_end(params);
exit(128);
}