Tue, 09 Dec 2003 17:55:25 +0000
include <stdbool.h> after <pbm.h> to avoid compile error on Red Hat 7.3.
tumble_pbm.c | file | annotate | diff | revisions |
1.1 --- a/tumble_pbm.c Tue Dec 09 17:48:33 2003 +0000 1.2 +++ b/tumble_pbm.c Tue Dec 09 17:55:25 2003 +0000 1.3 @@ -21,7 +21,6 @@ 1.4 */ 1.5 1.6 1.7 -#include <stdbool.h> 1.8 #include <stdint.h> 1.9 #include <stdio.h> 1.10 #include <stdlib.h> 1.11 @@ -36,6 +35,8 @@ 1.12 */ 1.13 #define PBM_REVERSE_BITS 1.14 1.15 +#include <stdbool.h> 1.16 + 1.17 1.18 #include "semantics.h" 1.19 #include "tumble.h"