MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlMallocAtomicLoc

Function xmlMallocAtomicLoc

ThirdParty/libxml2/vtklibxml2/xmlmemory.c:84–89  ·  view source on GitHub ↗

* 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. */

Source from the content-addressed store, hash-verified

82 * Returns a pointer to the allocated area or NULL in case of lack of memory.
83 */
84void *
85xmlMallocAtomicLoc(size_t size, const char *file ATTRIBUTE_UNUSED,
86 int line ATTRIBUTE_UNUSED)
87{
88 return(xmlMemMalloc(size));
89}
90
91/**
92 * xmlMemMalloc:

Callers

nothing calls this directly

Calls 1

xmlMemMallocFunction · 0.85

Tested by

no test coverage detected