View | Details | Raw Unified | Return to bug 240531 | Differences between
and this patch

Collapse All | Expand All

(-)files/patch-src_global.h (+19 lines)
Line 0 Link Here
1
--- src/global.h.orig	2019-09-12 10:57:00 UTC
2
+++ src/global.h
3
@@ -39,7 +39,6 @@
4
 // If you add anything to this list with export pragma, think long and
5
 // and hard if it's actually a good idea to incude it for every c-file.
6
 #include <assert.h> // IWYU pragma: export
7
-#include <stdbool.h> // IWYU pragma: export
8
 #include <stdint.h> // IWYU pragma: export
9
 #include <stddef.h> // IWYU pragma: export
10
 
11
@@ -48,6 +47,8 @@
12
 // those macros.
13
 #include <stdlib.h>
14
 #include <string.h>
15
+
16
+typedef enum { false, true } bool;
17
 
18
 /**
19
  * \defgroup Bitstream

Return to bug 240531