1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-12 09:17:37 +03:00

fix windows build.

ifdef addition from bug 666491 makes no sense
This commit is contained in:
Rob Richards 2012-05-09 12:42:51 -04:00
parent 115581ae2d
commit aa0be5f269

2
dict.c
View File

@ -46,13 +46,11 @@
#include <stdint.h>
#else
#ifdef HAVE_INTTYPES_H
#ifdef HAVE_STDINT_H
#include <inttypes.h>
#elif defined(WIN32)
typedef unsigned __int32 uint32_t;
#endif
#endif
#endif
#include <libxml/tree.h>
#include <libxml/dict.h>
#include <libxml/xmlmemory.h>