blob: c9bf0d86516ec5b47b69a78c3ff7885a2e7d7d63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef RT_DOT_H /* only include once */
#define RT_DOT_H 1
/*
* Include files.
*/
#include "../h/define.h"
#include "../h/arch.h"
#include "../h/config.h"
#include "../h/sys.h"
#include "../h/typedefs.h"
#include "../h/cstructs.h"
#include "../h/mproto.h"
#include "../h/cpuconf.h"
#include "../h/rmacros.h"
#include "../h/rstructs.h"
#ifdef Graphics
#include "../h/graphics.h"
#endif /* Graphics */
#include "../h/rexterns.h"
#include "../h/rproto.h"
#endif /* RT_DOT_H */
|