Files
mango/kernel/printk.c

11 lines
152 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, ...)
{
2023-02-03 20:51:23 +00:00
(void)log_buffer;
2023-02-03 20:26:02 +00:00
return 0;
}