mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 16:59:03 +03:00
a41a0e28c2
Not hooked up to the build yet.
12 lines
177 B
C
12 lines
177 B
C
/*
|
|
* vsprintf.c
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int vsprintf(char *buffer, const char *format, va_list ap)
|
|
{
|
|
return vsnprintf(buffer, ~(size_t)0, format, ap);
|
|
}
|