diff options
author | Darren Tucker <dtucker@dtucker.net> | 2019-11-13 11:56:56 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-11-13 11:56:56 +1100 |
commit | 2b523d23804c13cb68db135b919fcf312c42b580 (patch) | |
tree | 574cf2c9127519969a8708366ab2ae3c3af0afca | |
parent | 245dcbdca5374296bdb9c48be6e24bdf6b1c0af7 (diff) |
Include stdarg.h for va_list in xmalloc.h.
-rw-r--r-- | match.c | 1 | ||||
-rw-r--r-- | sftp-glob.c | 1 | ||||
-rw-r--r-- | umac.c | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -40,6 +40,7 @@ | |||
40 | #include <sys/types.h> | 40 | #include <sys/types.h> |
41 | 41 | ||
42 | #include <ctype.h> | 42 | #include <ctype.h> |
43 | #include <stdarg.h> | ||
43 | #include <stdlib.h> | 44 | #include <stdlib.h> |
44 | #include <string.h> | 45 | #include <string.h> |
45 | #include <stdio.h> | 46 | #include <stdio.h> |
diff --git a/sftp-glob.c b/sftp-glob.c index c196c51e5..feba0a23c 100644 --- a/sftp-glob.c +++ b/sftp-glob.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #endif | 23 | #endif |
24 | 24 | ||
25 | #include <dirent.h> | 25 | #include <dirent.h> |
26 | #include <stdarg.h> | ||
26 | #include <stdlib.h> | 27 | #include <stdlib.h> |
27 | #include <string.h> | 28 | #include <string.h> |
28 | 29 | ||
@@ -74,6 +74,7 @@ | |||
74 | #include "includes.h" | 74 | #include "includes.h" |
75 | #include <sys/types.h> | 75 | #include <sys/types.h> |
76 | #include <string.h> | 76 | #include <string.h> |
77 | #include <stdarg.h> | ||
77 | #include <stdio.h> | 78 | #include <stdio.h> |
78 | #include <stdlib.h> | 79 | #include <stdlib.h> |
79 | #include <stddef.h> | 80 | #include <stddef.h> |