cleanup asprintf stuff
authorRich Felker <dalias@aerifal.cx>
Sun, 20 Feb 2011 22:19:37 +0000 (17:19 -0500)
committerRich Felker <dalias@aerifal.cx>
Sun, 20 Feb 2011 22:19:37 +0000 (17:19 -0500)
src/stdio/asprintf.c
src/stdio/vasprintf.c

index 79e59c2db9a76e094564a2e68d2df11ce595eda4..4ec83534e05827134f2ef3ce888bf76da2075972 100644 (file)
@@ -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;
index f2bbc7aa1a556e0027675c69e8ad4cc4bef13f3e..68b7246b01362b2598894bb79e8074560fc3b833 100644 (file)
@@ -1,3 +1,4 @@
+#define _GNU_SOURCE
 #include <stdio.h>
 #include <stdarg.h>
 #include <stdlib.h>