chiark
/
gitweb
/
~ianmdlvl
/
elogind.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[PATCH] added support for i2c devices in wait_for_sysfs.c
[elogind.git]
/
klibc
/
klibc
/
vsprintf.c
1
/*
2
* vsprintf.c
3
*/
4
5
#include <stdio.h>
6
#include <unistd.h>
7
8
int vsprintf(char *buffer, const char *format, va_list ap)
9
{
10
return vsnprintf(buffer, ~(size_t)0, format, ap);
11
}