mirror of
https://github.com/encounter/osdev.git
synced 2026-07-10 12:18:43 -07:00
10 lines
200 B
C
10 lines
200 B
C
#include <stdio.h>
|
|
|
|
int fprintf(FILE *restrict f, const char *restrict fmt, ...) {
|
|
int ret;
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
ret = vfprintf(f, fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
} |