commit | 5222d8eb25c55ecd2fbb9d14f5e088780450d583 | [log] [tgz] |
---|---|---|
author | David Carlier <devnexen@gmail.com> | Fri Nov 03 12:00:26 2017 +0000 |
committer | Willy Tarreau <w@1wt.eu> | Fri Nov 03 15:04:09 2017 +0100 |
tree | 3647bf243be212cc820e79fcc7b18aedd89710e7 | |
parent | f2fc1fda804962224664e3a23c8a9ed88e4076b6 [diff] |
BUG/MINOR: stdarg.h inclusion Needed for the memvprintf part, the va_list type. Spotted during OpenBSD build.
diff --git a/include/common/standard.h b/include/common/standard.h index 59809b4..a06fb84 100644 --- a/include/common/standard.h +++ b/include/common/standard.h
@@ -26,6 +26,7 @@ #include <string.h> #include <stdio.h> #include <time.h> +#include <stdarg.h> #include <sys/time.h> #include <sys/types.h> #include <sys/socket.h>