summaryrefslogtreecommitdiff
path: root/include/common.h
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-04-03 12:29:48 -0400
committerFreya Murphy <freya@freyacat.org>2025-04-03 12:29:48 -0400
commit33b9d606916f3847e0f754693ca49ce56175a330 (patch)
treeeba26ad7722349ced40270f4a9a8083a58a7d453 /include/common.h
parenttrack changes (diff)
downloadcomus-33b9d606916f3847e0f754693ca49ce56175a330.tar.gz
comus-33b9d606916f3847e0f754693ca49ce56175a330.tar.bz2
comus-33b9d606916f3847e0f754693ca49ce56175a330.zip
refactor include
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/include/common.h b/include/common.h
deleted file mode 100644
index 13040d7..0000000
--- a/include/common.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
-** @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