]> git.sur5r.net Git - cc65/blob - libsrc/common/vprintf.c
This commit was generated by cvs2svn to compensate for changes in r2,
[cc65] / libsrc / common / vprintf.c
1 /*
2  * vprintf.c
3  *
4  * Ullrich von Bassewitz, 11.08.1998
5  */
6
7
8
9 #include <stdarg.h>
10 #include <stdio.h>
11 #include "_printf.h"
12
13
14
15 int vprintf (char* format, va_list ap)
16 {
17     return vfprintf (stdout, format, ap);
18 }
19
20
21