Remove duplicate include statement

Now that the Error module has error codes as well and is processed by
the generate_errors script like any other module, we don't need to
include the header manually.
This commit is contained in:
Janos Follath 2019-12-18 13:16:46 +00:00
parent d8752858fc
commit df587ee6d6
2 changed files with 2 additions and 4 deletions

View File

@ -25,8 +25,7 @@
#include MBEDTLS_CONFIG_FILE
#endif
#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY)
#include "mbedtls/error.h"
#if defined(MBEDTLS_ERROR_STRERROR_DUMMY)
#include <string.h>
#endif

View File

@ -25,8 +25,7 @@
#include MBEDTLS_CONFIG_FILE
#endif
#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY)
#include "mbedtls/error.h"
#if defined(MBEDTLS_ERROR_STRERROR_DUMMY)
#include <string.h>
#endif