historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/qboot/include/stdio.h
2024-01-16 11:20:27 -06: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