Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / openbios / include / sysinclude.h
1 #ifndef __SYSINCLUDE_H
2 #define __SYSINCLUDE_H
3
4 #ifdef BOOTSTRAP
5 #include "asm/types.h"
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <string.h>
9 #else /* BOOTSTRAP */
10 #include "libc/stdlib.h"
11 #include "libc/string.h"
12 #endif /* BOOTSTRAP */
13
14 extern int      printk( const char *fmt, ... ) \
15                         __attribute__ ((format (printf, 1, 2)));
16 #ifdef BOOTSTRAP
17 #define printk printf
18 #endif
19
20 #endif   /* __SYSINCLUDE_H */