summaryrefslogtreecommitdiff
path: root/kernel/old/include/common.h
diff options
context:
space:
mode:
authorIan McFarlane <i.mcfarlane2002@gmail.com>2025-04-17 14:19:40 -0400
committerIan McFarlane <i.mcfarlane2002@gmail.com>2025-04-17 14:19:40 -0400
commit7108e7c951f7cff79ce4992f1c7d8d0af0bb5af6 (patch)
treee99684b87952bded5e51c83848a5d35ab53d9ab0 /kernel/old/include/common.h
parentstarting on ata (diff)
parentclang 18 in flake instead of zig (diff)
downloadcomus-7108e7c951f7cff79ce4992f1c7d8d0af0bb5af6.tar.gz
comus-7108e7c951f7cff79ce4992f1c7d8d0af0bb5af6.tar.bz2
comus-7108e7c951f7cff79ce4992f1c7d8d0af0bb5af6.zip
Merge branch 'main' into ata
Diffstat (limited to 'kernel/old/include/common.h')
-rw-r--r--kernel/old/include/common.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/kernel/old/include/common.h b/kernel/old/include/common.h
deleted file mode 100644
index 599c492..0000000
--- a/kernel/old/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