Skip to content

Commit 3d94e34

Browse files
authored
Merge pull request #142 from Patater/no-relative-includes
psa: Avoid use of relative include paths
2 parents cad1223 + d58a00d commit 3d94e34

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include/psa/crypto_platform.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
/* Include the Mbed TLS configuration file, the way Mbed TLS does it
3939
* in each of its header files. */
4040
#if !defined(MBEDTLS_CONFIG_FILE)
41-
#include "../mbedtls/config.h"
41+
#include "mbedtls/config.h"
4242
#else
4343
#include MBEDTLS_CONFIG_FILE
4444
#endif

include/psa/crypto_sizes.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/* Include the Mbed TLS configuration file, the way Mbed TLS does it
4646
* in each of its header files. */
4747
#if !defined(MBEDTLS_CONFIG_FILE)
48-
#include "../mbedtls/config.h"
48+
#include "mbedtls/config.h"
4949
#else
5050
#include MBEDTLS_CONFIG_FILE
5151
#endif

include/psa/crypto_struct.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
/* Include the Mbed TLS configuration file, the way Mbed TLS does it
3939
* in each of its header files. */
4040
#if !defined(MBEDTLS_CONFIG_FILE)
41-
#include "../mbedtls/config.h"
41+
#include "mbedtls/config.h"
4242
#else
4343
#include MBEDTLS_CONFIG_FILE
4444
#endif

0 commit comments

Comments
 (0)