* xmlMallocAtomicLoc: * @size: an unsigned 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. */
| 82 | * Returns a pointer to the allocated area or NULL in case of lack of memory. |
| 83 | */ |
| 84 | void * |
| 85 | xmlMallocAtomicLoc(size_t size, const char *file ATTRIBUTE_UNUSED, |
| 86 | int line ATTRIBUTE_UNUSED) |
| 87 | { |
| 88 | return(xmlMemMalloc(size)); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * xmlMemMalloc: |
nothing calls this directly
no test coverage detected