Made the header C++ safe.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12829 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2005-05-26 09:08:54 +00:00
parent 5cc1406383
commit d260b2c469
+8
View File
@@ -27,8 +27,16 @@ typedef struct {
} console_module_info;
#ifdef __cplusplus
extern "C" {
#endif
int con_init(struct kernel_args *args);
void kprintf(const char *fmt, ...) __PRINTFLIKE(1,2);
void kprintf_xy(int x, int y, const char *fmt, ...) __PRINTFLIKE(3,4);
#ifdef __cplusplus
}
#endif
#endif /* _KERNEL_CONSOLE_H */