summaryrefslogtreecommitdiff
path: root/dev-libs/elfutils/files/error.h
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2016-12-03 01:46:08 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2016-12-03 01:46:08 -0600
commit20969e06a3ecfac7efc9817cdf2f1b45d2bf7554 (patch)
tree1a4e2d29120e5a86314b3aa24ddabe5b2b695470 /dev-libs/elfutils/files/error.h
parentee93d8900b12ecb556aaf7f11dac5ec9660d5f1f (diff)
downloadpackages-20969e06a3ecfac7efc9817cdf2f1b45d2bf7554.tar.gz
packages-20969e06a3ecfac7efc9817cdf2f1b45d2bf7554.tar.bz2
packages-20969e06a3ecfac7efc9817cdf2f1b45d2bf7554.tar.xz
packages-20969e06a3ecfac7efc9817cdf2f1b45d2bf7554.zip
dev-libs/elfutils: new package
Diffstat (limited to 'dev-libs/elfutils/files/error.h')
-rw-r--r--dev-libs/elfutils/files/error.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-libs/elfutils/files/error.h b/dev-libs/elfutils/files/error.h
new file mode 100644
index 000000000..ef06827a0
--- /dev/null
+++ b/dev-libs/elfutils/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_ */