summaryrefslogtreecommitdiff
path: root/src/h-basic.h
blob: a65780a5ceaa8a600e01fa696dd376b58e5bb85b (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
27
#pragma once

#ifdef __cplusplus
extern "C" {
#endif

/*
 * The most basic "include" file.
 *
 * This file simply includes other low level header files.
 */

/* System Configuration */
#include "h-config.h"

/* System includes/externs */
#include "h-system.h"

/* Basic types */
#include "h-type.h"

/* Basic constants and macros */
#include "h-define.h"

#ifdef __cplusplus
} // extern "C"
#endif