Files
mango/include/socks/printk.h

18 lines
245 B
C
Raw Normal View History

2023-02-03 20:26:02 +00:00
#ifndef SOCKS_PRINTK_H_
#define SOCKS_PRINTK_H_
#include <socks/console.h>
2023-03-20 20:41:39 +00:00
#ifdef __cplusplus
extern "C" {
#endif
extern void early_printk_init(console_t *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