Files
magenta/include/mango/printk.h
T

24 lines
337 B
C
Raw Normal View History

2024-11-02 11:31:51 +00:00
#ifndef MANGO_PRINTK_H_
#define MANGO_PRINTK_H_
2023-02-03 20:26:02 +00:00
2024-11-02 11:31:51 +00:00
#include <mango/console.h>
2023-03-20 20:41:39 +00:00
#ifdef __cplusplus
extern "C" {
#endif
#ifdef TRACE
#define tracek(...) printk(__VA_ARGS__)
#else
#define tracek(...)
#endif
extern void early_printk_init(struct console *con);
2023-02-03 20:26:02 +00:00
extern int printk(const char *format, ...);
2023-03-20 20:41:39 +00:00
#ifdef __cplusplus
}
#endif
2023-02-03 20:26:02 +00:00
#endif