Merge branch 'mbedtls-1.3' into development

* mbedtls-1.3:
  Fix compile errors with NO_STD_FUNCTIONS
  Expand config.pl's notion of "full"
  Ack external bugfix in Changelog
  FIx misplaced Changelog entry (oops)
  Fix compile bug: incompatible declaration of polarssl_exit in platform.c
  Fix contributor's name in Changelog
This commit is contained in:
Manuel Pégourié-Gonnard 2015-06-03 10:33:55 +01:00
commit 7ee5ddd798
5 changed files with 28 additions and 7 deletions

View file

@ -73,7 +73,7 @@ static int platform_snprintf_uninit( char * s, size_t n,
{
((void) s);
((void) n);
((void) format)
((void) format);
return( 0 );
}
@ -149,13 +149,12 @@ int mbedtls_platform_set_fprintf( int (*fprintf_func)( FILE *, const char *, ...
static void platform_exit_uninit( int status )
{
((void) status);
return( 0 );
}
#define MBEDTLS_PLATFORM_STD_EXIT platform_exit_uninit
#endif /* !MBEDTLS_PLATFORM_STD_EXIT */
int (*mbedtls_exit)( int status ) = MBEDTLS_PLATFORM_STD_EXIT;
void (*mbedtls_exit)( int status ) = MBEDTLS_PLATFORM_STD_EXIT;
int mbedtls_platform_set_exit( void (*exit_func)( int status ) )
{