xref: /haiku/src/system/boot/platform/u-boot/console.h (revision 6e82e428596071bbde44e296d04740f1f5d54d03)
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