Use 'ao-dbg' instead of 's51' to communicate with TeleMetrum
[fw/sdcc] / src / common.h
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <ctype.h>
4 #include <string.h>
5 #include <assert.h>
6
7
8 #ifndef COMMON_H
9 #define COMMON_H
10
11 #if defined(__APPLE__) && (__MACH__)
12 #ifdef _G
13 #undef _G
14 #endif
15 #endif
16
17 #include "SDCCglobl.h"
18 #include "SDCCmem.h"
19 #include "SDCCast.h"
20 #include "SDCCy.h"
21 #include "SDCChasht.h"
22 #include "SDCCbitv.h"
23 #include "SDCCset.h"
24 #include "SDCCicode.h"
25 #include "SDCClabel.h"
26 #include "SDCCBBlock.h"
27 #include "SDCCloop.h"
28 #include "SDCCcse.h"
29 #include "SDCCcflow.h"
30 #include "SDCCdflow.h"
31 #include "SDCClrange.h"
32 #include "SDCCptropt.h"
33 #include "SDCCopt.h"
34 #include "SDCCglue.h"
35 #include "SDCCpeeph.h"
36 #include "SDCCdebug.h"
37 #include "SDCCutil.h"
38 #include "SDCCasm.h"
39
40 #include "port.h"
41
42 #include "newalloc.h"
43
44 #endif