mirror of git://git.musl-libc.org/musl
cleanup asprintf stuff
This commit is contained in:
parent
46b99426e1
commit
3075f7e847
|
@ -1,8 +1,7 @@
|
|||
#define _GNU_SOURCE
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
int vasprintf(char **, const char *, va_list);
|
||||
|
||||
int asprintf(char **s, const char *fmt, ...)
|
||||
{
|
||||
int ret;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#define _GNU_SOURCE
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdlib.h>
|
||||
|
|
Loading…
Reference in New Issue