Change xrealloc argument type to fix the build

This commit is contained in:
Daniil 2022-10-02 21:05:32 +03:00 committed by kin4stat
parent aea2fe5f77
commit f6d6a5235a

View File

@ -65,7 +65,7 @@ xmalloc (size)
void *
xrealloc (ptr, size)
void* ptr;
size_t size;
{
register void * value = realloc (ptr, size);