1
0
Fork 0
qemu/roms/qboot/include/stdio.h
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

11 lines
283 B
C

#ifndef BIOS_STDIO_H
#define BIOS_STDIO_H 1
#include <stdarg.h>
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