blob: e7a155fe8592474632a6a826ebedc274af4bca34 [file] [log] [blame]
#define _GNU_SOURCE
#include <stdarg.h>
#include <stdio.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;
}