diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2012-08-19 17:02:10 +0200 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2012-08-27 14:18:29 +0200 |
commit | fd39b2c24653521ca3d6fdf8691cb265b72ef9a0 (patch) | |
tree | 62153c8392a234239dc30e466672c889ce83faa7 | |
parent | c83a608fb464f1fd76024a6abd05ffb700172645 (diff) |
client: fix missing stdarg.h include
When the C library is uClibc, stdarg.h is required to get the
definition for va_list et al.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
-rw-r--r-- | client/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/common.h b/client/common.h index ca3609f..13ef1c7 100644 --- a/client/common.h +++ b/client/common.h @@ -31,6 +31,7 @@ #endif #include <stdio.h> +#include <stdarg.h> #include <string> #include <vector> #include <map> |