Mon Dec 3 16:15:10 UTC 2007 Richard W.M. Jones <rjones@redhat.com>

* src/util.c: Fix header files for Windows builds.
This commit is contained in:
Richard W.M. Jones 2007-12-03 16:19:41 +00:00
parent 4cd62fe306
commit 78f756e081
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Mon Dec 3 16:15:10 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
* src/util.c: Fix header files for Windows builds.
Mon Dec 3 9:10:10 EST 2007 Daniel P. Berrange <berrange@redhat.com>
* src/qemu_conf.c: remove qemudMakeConfigPath, qemudEnsureDir,

View File

@ -24,6 +24,8 @@
* File created Jul 18, 2007 - Shuveb Hussain <shuveb@binarykarma.com>
*/
#include "config.h"
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>
@ -32,6 +34,12 @@
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#ifdef HAVE_SYS_SYSLIMITS_H
#include <sys/syslimits.h>
#endif
#include <libvirt/virterror.h>
#include "event.h"
#include "buf.h"