- (dtucker) [openbsd-compat/openbsd-compat.h] v*printf needs stdarg.h.

This commit is contained in:
Darren Tucker 2006-07-12 23:10:33 +10:00
parent deecec98c7
commit 5998ed03aa
2 changed files with 7 additions and 2 deletions

View File

@ -60,6 +60,7 @@
openbsd-compat/readpassphrase.c openbsd-compat/strtonum.c] Include <errno.h>.
- (dtucker) [openbsd-compat/setproctitle.c] Include stdarg.h.
- (dtucker) [ssh-keyscan.c ssh-rand-helper.c] More errno.h here too.
- (dtucker) [openbsd-compat/openbsd-compat.h] v*printf needs stdarg.h.
20060711
- (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
@ -4909,4 +4910,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4404 2006/07/12 12:44:34 dtucker Exp $
$Id: ChangeLog,v 1.4405 2006/07/12 13:10:33 dtucker Exp $

View File

@ -1,4 +1,4 @@
/* $Id: openbsd-compat.h,v 1.39 2006/07/10 14:20:52 dtucker Exp $ */
/* $Id: openbsd-compat.h,v 1.40 2006/07/12 13:10:34 dtucker Exp $ */
/*
* Copyright (c) 1999-2003 Damien Miller. All rights reserved.
@ -168,6 +168,10 @@ long long strtoll(const char *, char **, int);
long long strtonum(const char *, long long, long long, const char **);
#endif
#if !defined(HAVE_VASPRINTF) || !defined(HAVE_VSNPRINTF)
# include <stdarg.h>
#endif
#ifndef HAVE_VASPRINTF
int vasprintf(char **, const char *, va_list);
#endif