瀏覽代碼

cleanup asprintf stuff

Rich Felker 14 年之前
父節點
當前提交
3075f7e847
共有 2 個文件被更改,包括 2 次插入2 次删除
  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 <stdarg.h>
 
-int vasprintf(char **, const char *, va_list);
-
 int asprintf(char **s, const char *fmt, ...)
 {
 	int ret;

+ 1 - 0
src/stdio/vasprintf.c

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