musl-tcc/src/stdio/asprintf.c

14 lines
208 B
C

#define _GNU_SOURCE
#include <stdio.h>
#include <stdarg.h>
int asprintf(char **s, const char *fmt, ...)
{
int ret;
va_list ap;
va_start(ap, fmt);
ret = vasprintf(s, fmt, ap);
va_end(ap);
return ret;
}