usp10: Remove unused helper (Clang).

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2015-11-27 21:51:59 +03:00 committed by Alexandre Julliard
parent e6c67c5275
commit f47f8d2acd
1 changed files with 0 additions and 5 deletions

View File

@ -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);