]> git.saurik.com Git - apple/network_cmds.git/blobdiff - telnetd.tproj/vasprintf.c
network_cmds-245.tar.gz
[apple/network_cmds.git] / telnetd.tproj / vasprintf.c
index 1bc5d7fc0ba28c91185ab9083befe79215244268..ad4aed616e337b868951d75e3571c7c3f6d5c959 100644 (file)
@@ -33,13 +33,14 @@ static char rcsid[] = "$FreeBSD: src/lib/libc/stdio/vasprintf.c,v 1.12 2001/01/2
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <stdarg.h>
 #include <errno.h>
 
 int
 vasprintf(str, fmt, ap)
        char **str;
        const char *fmt;
-       _BSD_VA_LIST_ ap;
+       va_list ap;
 {
        int ret;
        FILE f;