git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6283982
)
Include <stdarg.h> in public header.
author
Guido Günther
<agx@sigxcpu.org>
Fri, 5 Nov 2010 12:23:11 +0000
(12:23 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Fri, 5 Nov 2010 12:25:24 +0000
(12:25 +0000)
Public headers use va_list, and this gives an error unless <stdarg.h>
had been included before the header.
src/guestfs.h
patch
|
blob
|
history
diff --git
a/src/guestfs.h
b/src/guestfs.h
index
977b4c5
..
0f4f9fd
100644
(file)
--- a/
src/guestfs.h
+++ b/
src/guestfs.h
@@
-35,6
+35,7
@@
extern "C" {
#endif
#include <stdint.h>
+#include <stdarg.h>
typedef struct guestfs_h guestfs_h;