From ea2e2994afd228929655f3d0a687a0389e7c199f Mon Sep 17 00:00:00 2001 From: David Garske Date: Fri, 30 Apr 2021 14:21:23 -0700 Subject: [PATCH] Reversing hunk in test.c for DEOS (suspect that was in error). --- wolfcrypt/test/test.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index d5a1dd83d..2eed1cf71 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -176,6 +176,10 @@ _Pragma("GCC diagnostic ignored \"-Wunused-function\""); __android_log_print(ANDROID_LOG_DEBUG, "TAG", __VA_ARGS__) #define fprintf(fp, ...) \ __android_log_print(ANDROID_LOG_DEBUG, "TAG", __VA_ARGS__) +#elif defined(WOLFSSL_DEOS) + #include + #undef printf + #define printf printx #else #ifdef XMALLOC_USER #include /* we're using malloc / free direct here */