|
|
1.1 root 1: /*
2: * libc/stdio/vprintf.c
3: * ANSI-compliant C standard i/o library.
4: * vprintf()
5: * ANSI 4.9.6.8.
6: * Formatted print to standard output.
7: */
8:
9: #include <stdio.h>
10: #include <stdarg.h>
11:
12: int
13: vprintf(format, args) const char *format; va_list args;
14: {
15: return vfprintf(stdout, format, args);
16: }
17:
18: /* end of libc/stdio/vprintf.c */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.