repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove long-obsolete clang workarounds from mips* syscall_arch.h files
[musl.git]
/
src
/
stdio
/
vsprintf.c
blob
c57349d4d888d532b39a15d525d248b0eee3c48d
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
}