blob: 4f47c3d291c4f064b7e8c80062d4c2e11f51b813 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
https://bugs.gentoo.org/944354
--- a/throttle.c
+++ b/throttle.c
@@ -121,7 +121,8 @@
}
-typedef enum { false = 0, true = 1 } boolean;
+#include <stdbool.h>
+typedef bool boolean;
typedef enum {
|