repo/extra/libelf/files/error.h
Dylan Araps ee62c900f9
libelf: all hail elfutils 0.180
linux 5.8 is set to release soon and it is incompatible with
elftoolchain's libelf (dejavu). we are moving to the last
libelf library available(?), elfutils.
2020-08-01 14:10:20 +03:00

28 lines
550 B
C

#ifndef _ERROR_H_
#define _ERROR_H_
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
static unsigned int error_message_count = 0;
static inline void error(int status, int errnum, const char* format, ...)
{
va_list ap;
fprintf(stderr, "%s: ", program_invocation_name);
va_start(ap, format);
vfprintf(stderr, format, ap);
va_end(ap);
if (errnum)
fprintf(stderr, ": %s", strerror(errnum));
fprintf(stderr, "\n");
error_message_count++;
if (status)
exit(status);
}
#endif /* _ERROR_H_ */