tests: fix build errors on OpenBSD

The cmocka.h header contains the following comment:

"These headers or their equivalents should be included prior to
including this header file.
 #include <stdarg.h>
 #include <stddef.h>
 #include <setjmp.h>
This allows test applications to use custom definitions of C standard
library functions and types".

Include <stdarg.h> where necessary to fix several build errors on
OpenBSD 6.3.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
diff --git a/tests/conformance/test_sec7_1.c b/tests/conformance/test_sec7_1.c
index 8cccae0..bab4632 100644
--- a/tests/conformance/test_sec7_1.c
+++ b/tests/conformance/test_sec7_1.c
@@ -17,6 +17,7 @@
 #include <setjmp.h>
 #include <errno.h>
 #include <unistd.h>
+#include <stdarg.h>
 #include <cmocka.h>
 #include <string.h>
 #include <sys/wait.h>