aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWilliam M. Brack <wbrack@src.gnome.org>2003-08-05 15:52:22 +0000
committerWilliam M. Brack <wbrack@src.gnome.org>2003-08-05 15:52:22 +0000
commitc193956ee1c3b229556301cf09f6ff1b6eb9cb70 (patch)
tree5f0751c73fbcb2bf0d1e1860e0f23a31102d9aae /include
parentc758c229b4f9669ff61a7ce1af3e4f74b11e2cb0 (diff)
downloadandroid_external_libxml2-c193956ee1c3b229556301cf09f6ff1b6eb9cb70.tar.gz
android_external_libxml2-c193956ee1c3b229556301cf09f6ff1b6eb9cb70.tar.bz2
android_external_libxml2-c193956ee1c3b229556301cf09f6ff1b6eb9cb70.zip
small changes to syntax to get rid of compiler warnings. No changes to
* error.c HTMLparser.c testC14N.c testHTML.c testURI.c xmlcatalog.c xmlmemory.c xmlreader.c xmlschemastypes.c python/libxml.c include/libxml/xmlmemory.h: small changes to syntax to get rid of compiler warnings. No changes to logic.
Diffstat (limited to 'include')
-rw-r--r--include/libxml/xmlmemory.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/libxml/xmlmemory.h b/include/libxml/xmlmemory.h
index f35ffffb..16ec60fd 100644
--- a/include/libxml/xmlmemory.h
+++ b/include/libxml/xmlmemory.h
@@ -121,7 +121,7 @@ int xmlGcMemGet (xmlFreeFunc *freeFunc,
int xmlInitMemory (void);
/*
- * Those are specific to the XML debug memory wrapper.
+ * These are specific to the XML debug memory wrapper.
*/
int xmlMemUsed (void);
void xmlMemDisplay (FILE *fp);
@@ -131,6 +131,11 @@ void * xmlMemMalloc (size_t size);
void * xmlMemRealloc (void *ptr,size_t size);
void xmlMemFree (void *ptr);
char * xmlMemoryStrdup (const char *str);
+void * xmlMallocLoc (size_t size, const char *file, int line);
+void * xmlReallocLoc (void *ptr, size_t size, const char *file, int line);
+void * xmlMallocAtomicLoc (size_t size, const char *file, int line);
+char * xmlMemStrdupLoc (const char *str, const char *file, int line);
+
#ifdef DEBUG_MEMORY_LOCATION
/**