syslog: revert LOG_FAC/LOG_FACMASK changes
[musl.git] / src / stdio / vsprintf.c
blobc57349d4d888d532b39a15d525d248b0eee3c48d
1 #include <stdio.h>
2 #include <limits.h>
4 int vsprintf(char *restrict s, const char *restrict fmt, va_list ap)
6 return vsnprintf(s, INT_MAX, fmt, ap);