]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Include stdarg.h for va_list in xmalloc.h.
authorDarren Tucker <dtucker@dtucker.net>
Wed, 13 Nov 2019 00:56:56 +0000 (11:56 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Wed, 13 Nov 2019 00:56:56 +0000 (11:56 +1100)
match.c
sftp-glob.c
umac.c

diff --git a/match.c b/match.c
index 754d2a0bad70deb8b348dd36a02e084349e6be55..91083470a8fd2c080855ae74555da1612ebd14ce 100644 (file)
--- a/match.c
+++ b/match.c
@@ -40,6 +40,7 @@
 #include <sys/types.h>
 
 #include <ctype.h>
+#include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 #include <stdio.h>
index c196c51e569f060fe1efacf730d7b92fa36b3779..feba0a23c2e5429f605c3730dbdb5a16d0a54957 100644 (file)
@@ -23,6 +23,7 @@
 #endif
 
 #include <dirent.h>
+#include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 
diff --git a/umac.c b/umac.c
index ccae39f3094024a914ff87d693bbe4e3a6df3c53..e4929bcb7185a309767c0082cb9e1ce495881973 100644 (file)
--- a/umac.c
+++ b/umac.c
@@ -74,6 +74,7 @@
 #include "includes.h"
 #include <sys/types.h>
 #include <string.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stddef.h>