diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-09-28 18:12:45 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-09-28 18:12:45 +0000 |
commit | 1b01d32bc8fc3e400f0de578f43f9a5b67acb19b (patch) | |
tree | aaae6ac5e4e1a1d4f6f30d3f0fe454ad507fd8ed /lib/libc/stdio/vasprintf.c | |
parent | 3f71210b7773e81240667f31ce200b664bb5ee7b (diff) |
deregister + ansify, no change in object code. ok deraadt@ millert@
Diffstat (limited to 'lib/libc/stdio/vasprintf.c')
-rw-r--r-- | lib/libc/stdio/vasprintf.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/libc/stdio/vasprintf.c b/lib/libc/stdio/vasprintf.c index b1b37678931..ee7f584efa2 100644 --- a/lib/libc/stdio/vasprintf.c +++ b/lib/libc/stdio/vasprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vasprintf.c,v 1.8 2003/06/17 21:56:24 millert Exp $ */ +/* $OpenBSD: vasprintf.c,v 1.9 2004/09/28 18:12:44 otto Exp $ */ /* * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> @@ -17,7 +17,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: vasprintf.c,v 1.8 2003/06/17 21:56:24 millert Exp $"; +static char rcsid[] = "$OpenBSD: vasprintf.c,v 1.9 2004/09/28 18:12:44 otto Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdio.h> @@ -25,10 +25,7 @@ static char rcsid[] = "$OpenBSD: vasprintf.c,v 1.8 2003/06/17 21:56:24 millert E #include <errno.h> int -vasprintf(str, fmt, ap) - char **str; - const char *fmt; - _BSD_VA_LIST_ ap; +vasprintf(char **str, const char *fmt, _BSD_VA_LIST_ ap) { int ret; FILE f; |