Commit f47f8d2a authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

usp10: Remove unused helper (Clang).

parent e6c67c52
......@@ -719,11 +719,6 @@ static inline void *heap_alloc_zero(SIZE_T size)
return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
}
static inline void *heap_realloc_zero(LPVOID mem, SIZE_T size)
{
return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size);
}
static inline BOOL heap_free(LPVOID mem)
{
return HeapFree(GetProcessHeap(), 0, mem);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment