移除不需要的klog.h C语言头文件

This commit is contained in:
pointer-to-bios 2024-02-18 02:31:16 +08:00
parent 073e50029a
commit 71f2aa6616
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
#ifndef KLOG_H
#define KLOG_H 1
#include <types.h>
#define KLOG_BUFFER_SIZE 2 * 1024 * 1024
typedef struct __klogger
{
usize tty;
char buffer[KLOG_BUFFER_SIZE];
usize index;
} klogger;
#endif