Merge pull request #5291 from kaleb-himes/FRDM-K64-Fixes

Add necessary includes for cross-builds
This commit is contained in:
David Garske 2022-06-28 09:35:06 -07:00 committed by GitHub
commit 741393e84f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,7 @@
#include <wolfssl/wolfcrypt/wc_port.h>
#include <wolfcrypt/benchmark/benchmark.h>
#include <stdio.h>
#include "hw.h" /* Needed for 'delay_us' prototype */
typedef struct func_args {
int argc;

View File

@ -28,6 +28,8 @@
extern "C" {
#endif
#include <wolfssl/wolfcrypt/types.h> /* Needed for 'byte' typedef */
/* run all benchmark entry */
#ifdef HAVE_STACK_SIZE
THREAD_RETURN WOLFSSL_THREAD benchmark_test(void* args);