mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-18 08:02:08 +00:00
I included stdbool.h in the wrong place. Closes: https://bugs.gentoo.org/959631 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
14 lines
247 B
Diff
14 lines
247 B
Diff
https://bugs.gentoo.org/955698
|
|
https://bugs.gentoo.org/959631
|
|
|
|
--- a/lib/asn1/typedefs.h
|
|
+++ b/lib/asn1/typedefs.h
|
|
@@ -52,7 +52,7 @@
|
|
|
|
#endif
|
|
|
|
-typedef unsigned char bool;
|
|
+#include <stdbool.h>
|
|
typedef unsigned int u_int;
|
|
|
|
#define DBG1(s...)
|