tests: Add mbedtls_test_ prefix to zero_alloc()

Add mbedtls_test_ prefix to zero_alloc() test helper
function.

Command to change *.function files:
find . -name "*.function" -exec awk -i inplace \
    '{sub(/zero_alloc/,"mbedtls_test_&")}1' {} \;

Signed-off-by: Ronald Cron <[email protected]>
This commit is contained in:
Ronald Cron
2020-06-12 14:33:08 +02:00
parent ff31eab938
commit 690f3ebe92
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ void mbedtls_test_hexify( unsigned char *obuf,
*
* For convenience, dies if allocation fails.
*/
unsigned char *zero_alloc( size_t len );
unsigned char *mbedtls_test_zero_alloc( size_t len );
/**
* Allocate and fill a buffer from hex data.