chiark / gitweb /
volume_id: provide libvolume_id.a file
[elogind.git] / klibc / klibc / snprintf.c
1 /*
2  * snprintf.c
3  */
4
5 #include <stdio.h>
6
7 int snprintf(char *buffer, size_t n, const char *format, ...)
8 {
9   va_list ap;
10   int rv;
11
12   va_start(ap, format);
13   rv = vsnprintf(buffer, n, format, ap);
14   va_end(ap);
15   return rv;
16 }