fix stray whitespace

This commit is contained in:
Daniel Pouzzner
2020-08-14 12:35:51 -05:00
parent dd825d90c4
commit 0f783077f8
2 changed files with 5 additions and 5 deletions

View File

@@ -2368,7 +2368,7 @@ int wc_GenerateSeed(OS_Seed* os, byte* output, word32 sz)
return 0;
}
#endif /* end WOLFSSL_ESPWROOM32 */
#elif defined(WOLFSSL_LINUXKM)
#include <linux/random.h>
int wc_GenerateSeed(OS_Seed* os, byte* output, word32 sz)
@@ -2382,9 +2382,9 @@ int wc_GenerateSeed(OS_Seed* os, byte* output, word32 sz)
#elif defined(WOLFSSL_RENESAS_TSIP)
#if defined(WOLFSSL_RENESA_TSIP_IAREWRX)
#include "r_bsp/mcu/all/r_rx_compiler.h"
#include "r_bsp/mcu/all/r_rx_compiler.h"
#endif
#include "r_bsp/platform.h"
#include "r_bsp/platform.h"
#include "r_tsip_rx_if.h"
int wc_GenerateSeed(OS_Seed* os, byte* output, word32 sz)

View File

@@ -456,8 +456,8 @@ decouple library dependencies with standard string, memory and so on.
#ifndef STRING_USER
#if defined(WOLFSSL_LINUXKM)
#include <linux/string.h>
#else
#include <string.h>
#else
#include <string.h>
#endif
#define XMEMCPY(d,s,l) memcpy((d),(s),(l))