sae: fix missing reallocarray definition

Building on GCC 8 resulted in this compiler error.

src/sae.c:107:25: error: implicit declaration of function 'reallocarray';
	did you mean 'realloc'? [-Werror=implicit-function-declaration]
	sm->rejected_groups = reallocarray(NULL, 2, sizeof(uint16_t));
This commit is contained in:
James Prestwood 2022-01-26 10:19:42 -08:00 committed by Denis Kenzior
parent b47ada02bf
commit d4b93220c5
1 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,8 @@
#include <config.h>
#endif
#include <stdlib.h>
#include <ell/ell.h>
#include "src/missing.h"