From 1881ef53b746021b4c449cb2ba56111f6d9f107a Mon Sep 17 00:00:00 2001 From: Jarno Lamsa Date: Fri, 4 Oct 2019 15:02:57 +0300 Subject: [PATCH] Move the definition of function in zeroize There is a static dependency in the test system for this file. To prevent the issue from happening, move the definition to the end of file so that the last return in the main remains in the same line. --- programs/test/zeroize.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/programs/test/zeroize.c b/programs/test/zeroize.c index 6e7db4e54..54f7c628d 100644 --- a/programs/test/zeroize.c +++ b/programs/test/zeroize.c @@ -59,19 +59,6 @@ void usage( void ) mbedtls_printf( " zeroize \n" ); } -#if defined(MBEDTLS_ENTROPY_HARDWARE_ALT) -int mbedtls_hardware_poll( void *data, unsigned char *output, - size_t len, size_t *olen ) -{ - size_t i; - (void) data; - for( i = 0; i < len; ++i ) - output[i] = rand(); - *olen = len; - return( 0 ); -} -#endif - int main( int argc, char** argv ) { int exit_code = MBEDTLS_EXIT_FAILURE; @@ -112,3 +99,16 @@ int main( int argc, char** argv ) return( exit_code ); } + +#if defined(MBEDTLS_ENTROPY_HARDWARE_ALT) +int mbedtls_hardware_poll( void *data, unsigned char *output, + size_t len, size_t *olen ) +{ + size_t i; + (void) data; + for( i = 0; i < len; ++i ) + output[i] = rand(); + *olen = len; + return( 0 ); +} +#endif