From eaae11e17f022188755c67e4dd3436875e84110d Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Wed, 20 May 2015 17:09:34 +0200 Subject: make a bootable BIOS includes source from kvm-unit-tests Signed-off-by: Paolo Bonzini --- include/stdio.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/stdio.h (limited to 'include/stdio.h') diff --git a/include/stdio.h b/include/stdio.h new file mode 100644 index 0000000..c154933 --- /dev/null +++ b/include/stdio.h @@ -0,0 +1,11 @@ +#ifndef BIOS_STDIO_H +#define BIOS_STDIO_H 1 + +#include + +extern int puts(const char *s); +extern int printf(const char *fmt, ...); +extern int snprintf(char *buf, int size, const char *fmt, ...); +extern int vsnprintf(char *buf, int size, const char *fmt, va_list va); + +#endif -- cgit v1.1