commit | 1138b000c00f9059320609e4e57032913054211d | [log] [tgz] |
---|---|---|
author | Balint Dobszay <balint.dobszay@arm.com> | Thu Aug 29 13:24:17 2024 +0200 |
committer | György Szing <gyorgy.szing@arm.com> | Thu Feb 06 14:38:06 2025 +0100 |
tree | 5c642734f08b3205eb19fd5f27ee04c76fd80cb3 | |
parent | 3e4f283fa0a608fd7853302c2d898c2f2acae813 [diff] [blame] |
Fix isspace() definition The isspace() function is part of ctype.c/h, remove the conflicting definition from stdlib.h Signed-off-by: Balint Dobszay <balint.dobszay@arm.com> Change-Id: Icff787a28cab2929e5a5212d807f10e3cf06bdcb
diff --git a/components/common/libc/src/strtoull.c b/components/common/libc/src/strtoull.c index 2e65a43..bd63301 100644 --- a/components/common/libc/src/strtoull.c +++ b/components/common/libc/src/strtoull.c
@@ -34,6 +34,7 @@ * SUCH DAMAGE. */ +#include <ctype.h> #include <errno.h> #include <limits.h> #include <stddef.h>