* xmlReallocLoc: * @ptr: the initial memory block pointer * @size: an int specifying the size in byte to allocate. * @file: the file name or NULL * @line: the line number * * DEPRECATED: don't use * * Returns a pointer to the allocated area or NULL in case of lack of memory. */
| 136 | * Returns a pointer to the allocated area or NULL in case of lack of memory. |
| 137 | */ |
| 138 | void * |
| 139 | xmlReallocLoc(void *ptr, size_t size, const char *file ATTRIBUTE_UNUSED, |
| 140 | int line ATTRIBUTE_UNUSED) |
| 141 | { |
| 142 | return(xmlMemRealloc(ptr, size)); |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * xmlMemRealloc: |
nothing calls this directly
no test coverage detected