summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2012-08-19 17:02:10 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2012-08-27 14:18:29 +0200
commitfd39b2c24653521ca3d6fdf8691cb265b72ef9a0 (patch)
tree62153c8392a234239dc30e466672c889ce83faa7
parentc83a608fb464f1fd76024a6abd05ffb700172645 (diff)
downloadspice-fd39b2c24653521ca3d6fdf8691cb265b72ef9a0.tar.gz
spice-fd39b2c24653521ca3d6fdf8691cb265b72ef9a0.tar.xz
spice-fd39b2c24653521ca3d6fdf8691cb265b72ef9a0.zip
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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/common.h b/client/common.h
index ca3609f8..13ef1c7a 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>