diff options
author | Corinna Vinschen <vinschen@redhat.com> | 2018-08-13 17:05:05 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-08-13 22:01:18 +0200 |
commit | b0917945efa374be7648d67dbbaaff323ab39edc (patch) | |
tree | 13ff771c815bb38be2740d2bc886f04b5e5e7bb4 /openbsd-compat/bsd-cygwin_util.c | |
parent | upstream: revert compat.[ch] section of the following change. It (diff) | |
download | openssh-b0917945efa374be7648d67dbbaaff323ab39edc.tar.xz openssh-b0917945efa374be7648d67dbbaaff323ab39edc.zip |
cygwin: add missing stdarg.h include
Further header file standarization in Cygwin uncovered a lazy
indirect include in bsd-cygwin_util.c
Signed-off-by: Corinna Vinschen <vinschen@redhat.com>
Diffstat (limited to 'openbsd-compat/bsd-cygwin_util.c')
-rw-r--r-- | openbsd-compat/bsd-cygwin_util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openbsd-compat/bsd-cygwin_util.c b/openbsd-compat/bsd-cygwin_util.c index 398a5f617..fb49e30f5 100644 --- a/openbsd-compat/bsd-cygwin_util.c +++ b/openbsd-compat/bsd-cygwin_util.c @@ -36,6 +36,7 @@ #include <fcntl.h> #include <string.h> #include <unistd.h> +#include <stdarg.h> #include "xmalloc.h" |