summaryrefslogtreecommitdiff
path: root/include/log.h
blob: f1e41106201d119e1f68f87ba096add9c19c7438 (plain)
1
2
3
4
5
6
7
8
#pragma once

#define RINGBUF_SIZE 64 * 1024

typedef void (*console_callback_t)(char);

void vprintk(const char *message, __builtin_va_list args);
void printk(const char *message, ...);