summaryrefslogtreecommitdiffhomepage
path: root/dev/ddk/io.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-29 05:03:14 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-29 05:06:15 +0100
commitc4870d08fa4bfb2613bf22a0b7cf306b388f58a4 (patch)
treec8b5023a5ab4fe257f7687573812053c6e5273fb /dev/ddk/io.h
parenta8bd5ed975031d63eb448d2ed4f160cf7159c3bc (diff)
ddk: refactor: reorganize kit into a standard kernel kit.
sched: refactor: refactor scheduler file names, for future additions. xcoff: refactor: document and improve XCOFF for NeFS (regarding Ne's FW) codemgr: refactor: make a difference between kernel and user processes. refactor: document project overall. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/ddk/io.h')
-rw-r--r--dev/ddk/io.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/dev/ddk/io.h b/dev/ddk/io.h
deleted file mode 100644
index cfd6d2d2..00000000
--- a/dev/ddk/io.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/* -------------------------------------------
-
- Copyright Amlal EL Mahrouss.
-
- Purpose: DDK Text I/O.
-
-------------------------------------------- */
-
-#pragma once
-
-#include <ddk/str.h>
-
-/// @brief print character into UART.
-DDK_EXTERN void kputc(const char ch);
-
-/// @brief print string to UART.
-/// @param message string to transmit to UART.
-DDK_EXTERN void kprint(const char* message);