diff options
Diffstat (limited to 'src/sys/include')
-rw-r--r-- | src/sys/include/io/cons/cons.h | 1 | ||||
-rw-r--r-- | src/sys/include/sys/syslog.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/sys/include/io/cons/cons.h b/src/sys/include/io/cons/cons.h index 7b0543e..4ae99a0 100644 --- a/src/sys/include/io/cons/cons.h +++ b/src/sys/include/io/cons/cons.h @@ -40,6 +40,7 @@ struct cons_scr { size_t text_x; size_t text_y; size_t max_col; + size_t max_row; uint32_t scr_bg; uint32_t scr_fg; }; diff --git a/src/sys/include/sys/syslog.h b/src/sys/include/sys/syslog.h index a8b24c2..ceaef73 100644 --- a/src/sys/include/sys/syslog.h +++ b/src/sys/include/sys/syslog.h @@ -31,10 +31,12 @@ #define _SYS_SYSLOG_H_ 1 #include <stdarg.h> +#include <stdbool.h> #if defined(_KERNEL) void vprintf(const char *fmt, va_list *ap); void printf(const char *fmt, ...); +void syslog_toggle(bool enable); #endif /* _KERNEL */ #endif /* !_SYS_SYSLOG */ |