Remove redundant definitions of exit codes

In the ssl/mini_client.c sample application the exit codes were redundantly
being redefined, causing compiler warnings.
This commit is contained in:
Simon Butcher 2016-08-24 20:09:06 +03:00
parent e49404a95d
commit cdb3ad03ed

View File

@ -64,9 +64,6 @@ int main( void )
#include "mbedtls/platform.h" #include "mbedtls/platform.h"
#else #else
#include <stdlib.h> #include <stdlib.h>
#define mbedtls_time_t time_t
#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
#endif #endif
#include <string.h> #include <string.h>