mirror of
https://github.com/gryf/wmaker.git
synced 2026-03-28 00:23:33 +01:00
Unused wsmap, begone!
- held only reference to wnew0, which was the only consumer of wmalloc0, safe trip both of them.
This commit is contained in:
committed by
Carlos R. Mafra
parent
4688e1b568
commit
8d0020cf9a
@@ -98,17 +98,6 @@ void *wmalloc(size_t size)
|
||||
return tmp;
|
||||
}
|
||||
|
||||
void *wmalloc0(size_t size)
|
||||
{
|
||||
void *ptr = wmalloc(size);
|
||||
if (!ptr)
|
||||
return NULL;
|
||||
|
||||
memset(ptr, 0, size);
|
||||
|
||||
return ptr;
|
||||
}
|
||||
|
||||
void *wrealloc(void *ptr, size_t newsize)
|
||||
{
|
||||
void *nptr;
|
||||
|
||||
Reference in New Issue
Block a user