39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
 
  | 
#endif
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <limits.h>
#define sz(x) ( sizeof (x) / sizeof (x) [0] )
enum /* constants */ {
	null = 0,
};
typedef unsigned long long word;
typedef _Bool bool;
enum { false = 0, true = 1 };
#define error_list \
  | 
 | 
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
 
  | 
#endif
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <limits.h>
#define sz(x) ( sizeof (x) / sizeof (x) [0] )
#define null ((void*)0)
typedef unsigned long long word;
typedef _Bool bool;
enum { false = 0, true = 1 };
#define error_list \
  |