xref: /aosp_15_r20/external/musl/src/stdio/asprintf.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #define _GNU_SOURCE
2 #include <stdio.h>
3 #include <stdarg.h>
4 
asprintf(char ** s,const char * fmt,...)5 int asprintf(char **s, const char *fmt, ...)
6 {
7 	int ret;
8 	va_list ap;
9 	va_start(ap, fmt);
10 	ret = vasprintf(s, fmt, ap);
11 	va_end(ap);
12 	return ret;
13 }
14