|
|
| version 1.2, 2003/06/17 04:26:46 | version 1.3, 2003/11/09 02:34:02 |
|---|---|
| Line 27 | Line 27 |
| * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| * | * |
| * $FreeBSD: src/lib/libc/stdio/vasprintf.c,v 1.11 1999/08/28 00:01:19 peter Exp $ | * $FreeBSD: src/lib/libc/stdio/vasprintf.c,v 1.11 1999/08/28 00:01:19 peter Exp $ |
| * $DragonFly: src/lib/libc/stdio/vasprintf.c,v 1.1 2003/06/16 04:34:24 dillon Exp $ | * $DragonFly$ |
| */ | */ |
| #include <stdio.h> | #include <stdio.h> |
| #include <stdlib.h> | #include <stdlib.h> |
| #include <stdarg.h> | |
| #include <errno.h> | #include <errno.h> |
| int | int |
| vasprintf(str, fmt, ap) | vasprintf(char **str, const char *fmt, va_list ap) |
| char **str; | |
| const char *fmt; | |
| _BSD_VA_LIST_ ap; | |
| { | { |
| int ret; | int ret; |
| FILE f; | FILE f; |