Fix warning that reallocarray() is static

This commit is contained in:
Lassi Kortela 2019-10-13 23:00:28 +03:00
parent f408a0bbcd
commit f0245033ca
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
#include "scheme.h"
static void *reallocarray(void *ptr, size_t nmemb, size_t size)
void *reallocarray(void *ptr, size_t nmemb, size_t size)
{
return realloc(ptr, nmemb * size);
}