Skip to content

Commit 29dccce

Browse files
committed
Add missing includes of limits.h
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
1 parent e5fdb3f commit 29dccce

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

drivers/builtin/src/bignum_core.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
#if defined(MBEDTLS_BIGNUM_C)
1111

12+
#include <limits.h>
1213
#include <string.h>
1314

1415
#include "mbedtls/private/error_common.h"

programs/psa/key_ladder_demo.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
* standard C headers for functions we'll use here. */
4141
#include "tf-psa-crypto/build_info.h"
4242

43+
#include <limits.h>
4344
#include <stdlib.h>
4445
#include <stdio.h>
4546
#include <string.h>

utilities/pkcs5.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "crypto_oid.h"
3131
#endif /* MBEDTLS_ASN1_PARSE_C */
3232

33+
#include <limits.h>
3334
#include <string.h>
3435

3536
#include "mbedtls/platform.h"

0 commit comments

Comments
 (0)