1/*
2 * Copyright 2007, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT license.
4 *
5 * Author:
6 *		François Revol, revol@free.fr.
7 */
8
9#ifndef CONSOLE_H
10#define CONSOLE_H
11
12#include <boot/platform/generic/text_console.h>
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18extern status_t console_init(void);
19
20#ifdef __cplusplus
21}
22#endif
23
24#endif	/* CONSOLE_H */
25