Commit ae4a90f2 authored by Bence Szépkúti's avatar Bence Szépkúti
Browse files

libc: Fix SIZE_MAX on AArch32



SIZE_MAX was mistakenly redefined from UINT32_MAX to UINT64_MAX
on AArch32 when the arch-specific headers were merged.

This value is not currently used by upstream TF-A source code,
so no functionality should be affected.

Change-Id: I2acf7f8736423697c7377e8ed4b08843ced26e66
Signed-off-by: default avatarBence Szépkúti <bence.szepkuti@arm.com>
parent 255b380a
......@@ -72,7 +72,7 @@
#define PTRDIFF_MIN LONG_MIN
#define PTRDIFF_MAX LONG_MAX
#define SIZE_MAX UINT64_MAX
#define SIZE_MAX ULONG_MAX
#define INT8_C(x) x
#define INT16_C(x) x
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment