Add a function forth_printf() which prints to openbios stdout.

Signed-off-by: Laurent Vivier <Laurent@vivier.eu>



git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@628 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Laurent Vivier
2009-11-22 09:50:54 +00:00
parent 26c129730b
commit 144d172001
2 changed files with 25 additions and 0 deletions

View File

@@ -25,4 +25,6 @@ extern int sprintf(char * buf, const char *fmt, ...);
extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
extern int snprintf(char * buf, size_t size, const char *fmt, ...);
extern int forth_printf( const char *fmt, ... );
#endif /* _H_VSPRINTF */