2023-02-03 20:26:02 +00:00
|
|
|
#ifndef SOCKS_PRINTK_H_
|
|
|
|
|
#define SOCKS_PRINTK_H_
|
|
|
|
|
|
2023-02-04 19:03:45 +00:00
|
|
|
#include <socks/console.h>
|
|
|
|
|
|
2023-03-20 20:41:39 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-04-12 20:17:11 +01:00
|
|
|
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
|