1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2025-04-21 12:27:27 +03:00

add-kboot-h.patch

kboot.h includes the common things and some externs

Signed-off-by: Andy Green <andy@openmoko.com>
This commit is contained in:
Andy Green
2008-08-13 00:36:46 +01:00
parent ae53877e7f
commit 072c9da010
4 changed files with 16 additions and 3 deletions

14
qiboot/src/kboot.h Normal file
View File

@@ -0,0 +1,14 @@
#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