1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 18:22:28 +02:00
xburst-tools/qiboot/src/kboot.h

15 lines
232 B
C
Raw Normal View History

#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