1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-12-24 17:41:01 +03:00

- Fixed a whole bunch of dependencies on defines between files, examples and tests

This commit is contained in:
Paul Bakker
2011-05-26 13:16:06 +00:00
parent 2c0994e973
commit 5690efccc4
66 changed files with 1408 additions and 701 deletions

View File

@@ -24,10 +24,19 @@
*/
#include "polarssl/config.h"
#include "polarssl/havege.h"
#include <time.h>
#include <stdio.h>
#if !defined(POLARSSL_HAVEGE_C)
int main( void )
{
printf("POLARSSL_HAVEGE_C not defined.\n");
return( 0 );
}
#else
int main( int argc, char *argv[] )
{
FILE *f;
@@ -70,3 +79,4 @@ int main( int argc, char *argv[] )
fclose( f );
return( 0 );
}
#endif /* POLARSSL_HAVEGE_C */