diff options
Diffstat (limited to 'Source/Kernel/Core/Sys.ns.h')
-rw-r--r-- | Source/Kernel/Core/Sys.ns.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Kernel/Core/Sys.ns.h b/Source/Kernel/Core/Sys.ns.h index 69dcc42..825b68c 100644 --- a/Source/Kernel/Core/Sys.ns.h +++ b/Source/Kernel/Core/Sys.ns.h @@ -5,6 +5,7 @@ #define DEF_SYS_NS_H //This file contains system-relative functions +class String; namespace Sys { void outb(u16int port, u8int value); @@ -13,6 +14,7 @@ namespace Sys { void panic(char* message, char *file, u32int line); void panic_assert(char* file, u32int line, char *desc); void bochs_output(char* message, char *file, u32int line); + void bochs_output(String message, char *file, u32int line); void bochs_output_hex(u32int i); void reboot(); } |