Browse Source

cleanup asprintf stuff

Rich Felker 14 years ago
parent
commit
3075f7e847
2 changed files with 2 additions and 2 deletions
  1. 1 2
      src/stdio/asprintf.c
  2. 1 0
      src/stdio/vasprintf.c

+ 1 - 2
src/stdio/asprintf.c

@@ -1,8 +1,7 @@
+#define _GNU_SOURCE
 #include <stdio.h>
 #include <stdio.h>
 #include <stdarg.h>
 #include <stdarg.h>
 
 
-int vasprintf(char **, const char *, va_list);
-
 int asprintf(char **s, const char *fmt, ...)
 int asprintf(char **s, const char *fmt, ...)
 {
 {
 	int ret;
 	int ret;

+ 1 - 0
src/stdio/vasprintf.c

@@ -1,3 +1,4 @@
+#define _GNU_SOURCE
 #include <stdio.h>
 #include <stdio.h>
 #include <stdarg.h>
 #include <stdarg.h>
 #include <stdlib.h>
 #include <stdlib.h>