mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 18:22:28 +02:00
15 lines
232 B
C
15 lines
232 B
C
|
|
||
|
#ifndef __KBOOT_H__
|
||
|
#define __KBOOT_H__
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
#include "serial.h"
|
||
|
#include "ctype.h"
|
||
|
|
||
|
int printk(const char *fmt, ...);
|
||
|
int vsprintf(char *buf, const char *fmt, va_list args);
|
||
|
void puts(const char *string);
|
||
|
|
||
|
#endif
|
||
|
|