gs_probackup 功能添加

This commit is contained in:
unknown
2020-09-28 19:18:06 +08:00
parent 62bf5cfc71
commit 12ed218eb0
69 changed files with 33901 additions and 12 deletions

View File

@ -46,6 +46,12 @@ void* pg_malloc(size_t size)
return pg_malloc_internal(size, 0);
}
void *
pg_malloc0(size_t size)
{
return pg_malloc_internal(size, MCXT_ALLOC_ZERO);
}
void* pg_realloc(void* ptr, size_t size)
{
void* tmp = NULL;