File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 55 */
66/* Tunable constants; may be overruled by machine descriptor table */
77
8+ #include <stdbool.h>
9+
810#ifndef OP_SEPARATOR
911#define OP_SEPARATOR ','
1012#endif
@@ -82,8 +84,6 @@ struct instr_descr {
8284 struct templat templates [MAXOP ];
8385};
8486
85- typedef int bool ;
86-
8787#define TRUE 1
8888#define FALSE 0
8989
Original file line number Diff line number Diff line change 88/* This file contains the definitions of the global data types.
99 */
1010
11+ #include <stdint.h>
12+ #include <stdbool.h>
13+
1114/* TEMPORARY: */
1215#define LONGOFF
1316
1821
1922typedef struct argbytes argb_t ;
2023typedef char byte ;
21- typedef byte bool ;
2224typedef long offset ;
2325typedef short obj_id ;
2426typedef short proc_id ;
Original file line number Diff line number Diff line change 55#ifndef TYPES_H_
66#define TYPES_H_
77
8+ #include <stdbool.h>
9+
810typedef unsigned char byte ;
9- typedef char bool ;
1011typedef struct line line_t ;
1112typedef struct line * line_p ;
1213typedef struct sym sym_t ;
You can’t perform that action at this time.
0 commit comments