summaryrefslogtreecommitdiff
path: root/include/common.h
blob: 13040d7711c966ecaf6608173148021e51724cfa (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
28
29
30
31
/**
** @file	common.h
**
** @author	Warren R. Carithers
**
** @brief	Common definitions for the baseline system.
**
** This header file pulls in the standard header information needed
** by all parts of the system. It is purely for our convenience.
*/

#ifndef COMMON_H_
#define COMMON_H_

// everything needs these; they also pull in
// the kernel- or user-level defs and lib headers
#include <types.h>
#include <params.h>
#include <defs.h>
#include <lib.h>

#ifdef KERNEL_SRC

// only kernel code needs these headers
#include <common.h>
#include <cio.h>
#include <debug.h>

#endif /* KERNEL_SRC */

#endif