From: Mike Frysinger Date: Tue, 12 Aug 2014 14:50:34 +0000 (-0400) Subject: libtirpc: include stdarg.h when used X-Git-Tag: libtirpc-0-2-6-rc1~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e34b252aaf9b7932c17f5d6b271e296220d31dc4;p=libtirpc libtirpc: include stdarg.h when used The debug.h header uses va_list but doesn't include stdarg.h which can lead to random build failures. Signed-off-by: Mike Frysinger Signed-off-by: Steve Dickson --- diff --git a/src/debug.h b/src/debug.h index afc8d57..c971ac3 100644 --- a/src/debug.h +++ b/src/debug.h @@ -21,6 +21,8 @@ #ifndef _DEBUG_H #define _DEBUG_H + +#include #include extern int libtirpc_debug_level;