chiark / gitweb /
[PATCH] klibc: strlcpy/strlcat - don't alter destination if size == 0
[elogind.git] / klibc / klibc / vprintf.c
1 /*
2  * vprintf.c
3  */
4
5 #include <stdio.h>
6 #include <stdarg.h>
7
8 int vprintf(const char *format, va_list ap)
9 {
10   return vfprintf(stdout, format, ap);
11 }