diff --git a/IDE/Renesas/cs+/Projects/common/wolfssl_dummy.c b/IDE/Renesas/cs+/Projects/common/wolfssl_dummy.c index 3ea7879c2..4625101ab 100644 --- a/IDE/Renesas/cs+/Projects/common/wolfssl_dummy.c +++ b/IDE/Renesas/cs+/Projects/common/wolfssl_dummy.c @@ -30,8 +30,6 @@ #include #include -#define WOLFSSL_SUCCESS 1 - #define YEAR 2018 #define MON 5 @@ -46,12 +44,12 @@ time_t time(time_t *t) int strncasecmp(const char *s1, const char * s2, unsigned int sz) { for( ; sz>0; sz--, s1++, s2++){ - if(toupper(*s1) < toupper(*s2)){ - return -1; - } - if(toupper(*s1) > toupper(*s2)){ - return 1; - } + if(toupper(*s1) < toupper(*s2)){ + return -1; + } + if(toupper(*s1) > toupper(*s2)){ + return 1; + } } return 0; } diff --git a/IDE/Renesas/cs+/Projects/test/test_main.c b/IDE/Renesas/cs+/Projects/test/test_main.c index 74d06d914..95caf8e43 100644 --- a/IDE/Renesas/cs+/Projects/test/test_main.c +++ b/IDE/Renesas/cs+/Projects/test/test_main.c @@ -41,7 +41,6 @@ typedef struct func_args { } func_args; void wolfcrypt_test(func_args args); -void ApiTest(void); void main(void) {