From 72ce58786c4c23eba75d53799abefe1c5f83ce93 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 5 Dec 2007 13:56:22 +0000 Subject: Wed Dec 5 13:48:00 UTC 2007 Richard W.M. Jones * python/libvir.c, python/libvirt_wrap.h, qemud/qemud.c, qemud/remote.c, src/internal.h, src/openvz_conf.c, src/openvz_driver.c, src/proxy_internal.h, src/qemu_conf.c, src/qemu_driver.c, src/remote_internal.h, src/test.h, src/util.c, src/xen_unified.c, src/xen_unified.h, tests/nodeinfotest.c, tests/qemuxml2argvtest.c, tests/qemuxml2xmltest.c, tests/reconnect.c, tests/sexpr2xmltest.c, tests/virshtest.c, tests/xencapstest.c, tests/xmconfigtest.c, tests/xml2sexprtest.c: Change #include <> to #include "" for local includes. Removed many includes from src/internal.h and put them in the C files which actually use them. Removed - unused. Added a comment around __func__. Removed a clashing redefinition of VERSION symbol. All limits (PATH_MAX etc) now done in src/internal.h, so we don't need to include those headers in other files. --- libvirt_wrap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libvirt_wrap.h') diff --git a/libvirt_wrap.h b/libvirt_wrap.h index d7f43c2..ef5fa68 100644 --- a/libvirt_wrap.h +++ b/libvirt_wrap.h @@ -7,8 +7,8 @@ */ #include -#include -#include +#include "libvirt/libvirt.h" +#include "libvirt/virterror.h" #ifdef __GNUC__ #ifdef ATTRIBUTE_UNUSED -- cgit