aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/tools/misc/elfutils/musl-error_h.patch
blob: 711928078d3574872d7c17eca0081bc93d4b5eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
diff -crb --new-file a/lib/error.h b/lib/error.h
*** a/lib/error.h	1969-12-31 19:00:00.000000000 -0500
--- b/lib/error.h	2021-01-21 04:38:25.000000000 -0500
***************
*** 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_ */
diff -crb --new-file a/src/error.h b/src/error.h
*** a/src/error.h	1969-12-31 19:00:00.000000000 -0500
--- b/src/error.h	2021-01-21 04:38:29.000000000 -0500
***************
*** 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_ */