Kernel: Remove two unneeded headers.

This commit is contained in:
Andreas Kling 2019-04-10 22:49:11 +02:00
commit 0bc72551f4
Notes: sideshowbarker 2024-07-19 14:45:59 +09:00
7 changed files with 15 additions and 44 deletions

View file

@ -1,6 +1,10 @@
#pragma once
#include "kprintf.h"
extern "C" {
int dbgprintf(const char *fmt, ...);
int kprintf(const char *fmt, ...);
int ksprintf(char* buf, const char *fmt, ...);
}
#ifndef USERLAND
#define printf dbgprintf