diff options
Diffstat (limited to 'src/stdio/vprintf.c')
-rw-r--r-- | src/stdio/vprintf.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stdio/vprintf.c b/src/stdio/vprintf.c new file mode 100644 index 00000000..67b38dac --- /dev/null +++ b/src/stdio/vprintf.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +int vprintf(const char *fmt, va_list ap) +{ + return vfprintf(stdout, fmt, ap); +} |