xref: /haiku/src/system/boot/platform/u-boot/console.h (revision 56430ad8002b8fd1ac69b590e9cc130de6d9e852)
1 /*
2  * Copyright 2009 Jonas Sundström, jonas@kirilla.com
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 #ifndef _SYSTEM_BOOT_PLATFORM_STUB_CONSOLE_H
6 #define _SYSTEM_BOOT_PLATFORM_STUB_CONSOLE_H
7 
8 #include <boot/platform/generic/text_console.h>
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 extern status_t console_init(void);
15 
16 #ifdef __cplusplus
17 }
18 #endif
19 
20 #endif /* _SYSTEM_BOOT_PLATFORM_STUB_CONSOLE_H */
21