aboutsummaryrefslogtreecommitdiff
path: root/extra/libelf/files
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2021-01-12 15:52:10 +0300
committerCem Keylan <cem@ckyln.com>2021-01-12 15:52:10 +0300
commit954902a8496d8cbddbd650c87bd5ff9f3e6c1deb (patch)
tree422b238103c824e6fef78bad072453776b356c4b /extra/libelf/files
parent8bd7d55373db3480f909d0798dc512c81a7dec07 (diff)
downloadrepository-954902a8496d8cbddbd650c87bd5ff9f3e6c1deb.tar.gz
libelf: move to extra
Diffstat (limited to 'extra/libelf/files')
-rw-r--r--extra/libelf/files/error.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/libelf/files/error.h b/extra/libelf/files/error.h
new file mode 100644
index 00000000..ef06827a
--- /dev/null
+++ b/extra/libelf/files/error.h
@@ -0,0 +1,27 @@
+#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_ */