2c0ff0c1e1
Previously this resulted in a config mismatch between default config and esp_config.h Closes https://github.com/espressif/esp-idf/issues/711
9 lines
257 B
C
9 lines
257 B
C
/* This shim header is added so that any application code
|
|
which includes "mbedtls/config.h" directly gets the correct
|
|
config. */
|
|
#pragma once
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
|
#include_next "mbedtls/config.h"
|
|
#else
|
|
#include MBEDTLS_CONFIG_FILE
|
|
#endif
|