diff options
author | 2016-06-16 11:00:17 +0000 | |
---|---|---|
committer | 2016-06-16 11:00:17 +0000 | |
commit | ae6d6c7528378c233e003ce068e173c1c8db5e23 (patch) | |
tree | ca85bcb7652affa9d138e0b7994549e8d6a23821 /usr.bin/ssh/sshbuf-getput-basic.c | |
parent | Allow a command to be specified to display-panes, similar to (diff) | |
download | wireguard-openbsd-ae6d6c7528378c233e003ce068e173c1c8db5e23.tar.xz wireguard-openbsd-ae6d6c7528378c233e003ce068e173c1c8db5e23.zip |
Include stdarg.h for va_copy as per man page.
Diffstat (limited to 'usr.bin/ssh/sshbuf-getput-basic.c')
-rw-r--r-- | usr.bin/ssh/sshbuf-getput-basic.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshbuf-getput-basic.c b/usr.bin/ssh/sshbuf-getput-basic.c index 72a022a00e8..bd4443b42d6 100644 --- a/usr.bin/ssh/sshbuf-getput-basic.c +++ b/usr.bin/ssh/sshbuf-getput-basic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshbuf-getput-basic.c,v 1.5 2015/10/20 23:24:25 mmcc Exp $ */ +/* $OpenBSD: sshbuf-getput-basic.c,v 1.6 2016/06/16 11:00:17 dtucker Exp $ */ /* * Copyright (c) 2011 Damien Miller * @@ -16,6 +16,8 @@ */ #include <sys/types.h> + +#include <stdarg.h> #include <stdlib.h> #include <stdio.h> #include <string.h> |