projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
correctly handle write errors encountered by printf-family functions
[oweals/musl.git]
/
src
/
stdio
/
vsprintf.c
1
#include <stdio.h>
2
#include <limits.h>
3
4
int vsprintf(char *restrict s, const char *restrict fmt, va_list ap)
5
{
6
return vsnprintf(s, INT_MAX, fmt, ap);
7
}