OSDN Git Service

Add Doxygen comment to monster1.c.
[hengband/hengband.git] / src / tmp / h-basic.h
1 /* File: h-basic.h */
2
3 #ifndef INCLUDED_H_BASIC_H
4 #define INCLUDED_H_BASIC_H
5
6 /*
7  * The most basic "include" file.
8  *
9  * This file simply includes other low level header files.
10  */
11
12 #ifdef HAVE_CONFIG_H
13 #include "autoconf.h"
14 #endif /* HAVE_CONFIG_H */
15
16 /* System Configuration */
17 #include "h-config.h"
18
19 /* System includes/externs */
20 #include "h-system.h"
21
22 /* Basic types */
23 #include "h-type.h"
24
25 /* Basic constants and macros */
26 #include "h-define.h"
27
28 #endif
29