diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-20 17:19:37 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-20 17:19:37 -0500 |
commit | 3075f7e847b0c717959054b86360722326dbde1e (patch) | |
tree | 097b7d902262569255fd6efd679c24a7992e1469 | |
parent | 46b99426e16c6a4df9f6217cd7989afd4520f557 (diff) | |
download | musl-3075f7e847b0c717959054b86360722326dbde1e.tar.gz musl-3075f7e847b0c717959054b86360722326dbde1e.tar.xz musl-3075f7e847b0c717959054b86360722326dbde1e.zip |
cleanup asprintf stuff
-rw-r--r-- | src/stdio/asprintf.c | 3 | ||||
-rw-r--r-- | src/stdio/vasprintf.c | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/stdio/asprintf.c b/src/stdio/asprintf.c index 79e59c2d..4ec83534 100644 --- a/src/stdio/asprintf.c +++ b/src/stdio/asprintf.c @@ -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; diff --git a/src/stdio/vasprintf.c b/src/stdio/vasprintf.c index f2bbc7aa..68b7246b 100644 --- a/src/stdio/vasprintf.c +++ b/src/stdio/vasprintf.c @@ -1,3 +1,4 @@ +#define _GNU_SOURCE #include <stdio.h> #include <stdarg.h> #include <stdlib.h> |