mirror of
https://github.com/encounter/osdev.git
synced 2026-07-10 12:18:43 -07:00
5 lines
111 B
C
5 lines
111 B
C
#include <stdio.h>
|
|
|
|
int vprintf(const char *restrict fmt, va_list ap) {
|
|
return vfprintf(stdout, fmt, ap);
|
|
} |