564cba312e
some broken C++ export definitions, added missing licenses etc. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3152 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
415 B
C
Executable File
17 lines
415 B
C
Executable File
/*
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
** Distributed under the terms of the NewOS License.
|
|
*/
|
|
#ifndef _KERNEL_CONSOLE_H
|
|
#define _KERNEL_CONSOLE_H
|
|
|
|
#include <stdio.h>
|
|
|
|
struct kernel_args;
|
|
|
|
int con_init(struct kernel_args *ka);
|
|
void kprintf(const char *fmt, ...) __PRINTFLIKE(1,2);
|
|
void kprintf_xy(int x, int y, const char *fmt, ...) __PRINTFLIKE(3,4);
|
|
|
|
#endif /* _KERNEL_CONSOLE_H */
|