* xmlMallocLoc: * @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. */
| 65 | * Returns a pointer to the allocated area or NULL in case of lack of memory. |
| 66 | */ |
| 67 | void * |
| 68 | xmlMallocLoc(size_t size, const char *file ATTRIBUTE_UNUSED, |
| 69 | int line ATTRIBUTE_UNUSED) |
| 70 | { |
| 71 | return(xmlMemMalloc(size)); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * xmlMallocAtomicLoc: |
nothing calls this directly
no test coverage detected