mirror of
https://github.com/espressif/esp-idf.git
synced 2025-12-06 00:59:30 +01:00
10 lines
257 B
C
10 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
|