Files
RedBear-OS/include/bits/stdio.h
T
Jeremy Soller e30dec7124 WIP: stdio.h
2018-03-03 15:15:50 -07:00

14 lines
222 B
C

#ifndef _BITS_STDIO_H
#define _BITS_STDIO_H
int printf(const char *restrict fmt, ...) {
int ret;
va_list ap;
va_start(ap, fmt);
ret = vfprintf(stdout, fmt, ap);
va_end(ap);
return ret;
}
#endif /* _BITS_STDIO_H */