diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-19 22:59:13 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-19 22:59:13 -0400 |
commit | ed34392443c411214e6e91c3f912185115a39175 (patch) | |
tree | a93706c580c2d61a552ae9054c207dc1f3c3a200 /sys/include | |
parent | d1bafb75630db5cc07825e53f28a241c2005b43b (diff) |
kernel: syslog: Make syslog_screen extern
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/syslog.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/include/sys/syslog.h b/sys/include/sys/syslog.h index 7706eec..3015f6b 100644 --- a/sys/include/sys/syslog.h +++ b/sys/include/sys/syslog.h @@ -35,6 +35,7 @@ #define _SYS_SYSLOG_H_ #include <stdarg.h> +#include <dev/vcons/vcons.h> #if defined(_KERNEL) @@ -58,6 +59,8 @@ void syslog_init(void); void kprintf(const char *fmt, ...); void vkprintf(const char *fmt, va_list *ap); +extern struct vcons_screen g_syslog_screen; + #endif /* defined(_KERNEL) */ #endif /* !_SYS_SYSLOG_H_ */ |