Files
mango/kernel/printk.c

10 lines
133 B
C
Raw Normal View History

2023-02-03 20:26:02 +00:00
#define LOG_BUFFER_SIZE 0x40000
static char log_buffer[LOG_BUFFER_SIZE] = {0};
int printk(const char *format, ...)
{
return 0;
}