Cleanup of stdlib function calls in the wolfSSL library to use our cross-platform "X*" style macros in types.h.

This commit is contained in:
David Garske
2016-06-29 11:11:25 -07:00
parent eb072e0344
commit 5b3a72d482
15 changed files with 319 additions and 319 deletions

View File

@@ -383,7 +383,7 @@ void file_test(const char* file, byte* check)
return;
}
memcpy(check, shasum, sizeof(shasum));
XMEMCPY(check, shasum, sizeof(shasum));
for(j = 0; j < SHA256_DIGEST_SIZE; ++j )
printf( "%02x", shasum[j] );