testbench: include stdlib.h

Newer GCC version complain about free() not being defined.

Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
This commit is contained in:
Liam Girdwood 2022-07-13 18:03:29 +01:00 committed by Liam Girdwood
parent 7882b1a93d
commit 03b4f30129
2 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@
#include "testbench/trace.h"
#include "testbench/file.h"
#include <limits.h>
#include <stdlib.h>
#ifdef TESTBENCH_CACHE_CHECK
#include <arch/lib/cache.h>

View File

@ -11,6 +11,7 @@
#include <errno.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <sof/common.h>
#include <sof/string.h>
#include <sof/audio/component.h>