summaryrefslogtreecommitdiff
path: root/toc.c
blob: 330956317f23baee27ff63ceb6db3aa5686793eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Includes all of toc's files */
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
#include <limits.h>
#include <stdint.h>
#include <stdbool.h>
#include "util/err.c"
#include "util/arr.c"
#include "util/blockarr.c"
#include "util/str.c"
#include "identifiers.c"
#include "tokenizer.c"
#include "parse.c"
#include "eval.c"
#include "types.c"
#include "base_cgen.c"
#include "decls_cgen.c"
#include "cgen.c"