1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-12-27 03:21:26 +03:00

added a couple of standard includes. Daniel

* globals.c: added a couple of standard includes.
Daniel
This commit is contained in:
Daniel Veillard 2001-10-13 12:18:28 +00:00
parent 77d19aea03
commit e70906192c
2 changed files with 6 additions and 5 deletions

View File

@ -1,7 +1,6 @@
2001-10-13 Jaka Mocnik <jaka@gnu.org>
Sat Oct 13 14:15:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
* globals.c: #include stdlib.h and string.h in order to have
protoypes of memory and str*() routines.
* globals.c: added a couple of standard includes.
Sat Oct 13 11:08:20 CEST 2001 Daniel Veillard <daniel@veillard.com>

View File

@ -13,11 +13,13 @@
#include "libxml.h"
#include <libxml/xmlmemory.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include <string.h>
#include <libxml/xmlmemory.h>
/*
* Helpful Macro
*/