commit | 587c15565f543878aeeff80bf224e24616d68462 | [log] [tgz] |
---|---|---|
author | Madhukar Pappireddy <madhukar.pappireddy@arm.com> | Wed Jan 27 18:32:17 2021 -0600 |
committer | Madhukar Pappireddy <madhukar.pappireddy@arm.com> | Wed Feb 03 10:36:33 2021 -0600 |
tree | 9a4db63865c18ad611cda107a28a4cdb02957041 | |
parent | 15c1c14735c28b03c540fdb00aa44b208e3b01eb [diff] [blame] |
libc: Import strtoll from FreeBSD project From commit: 21571b1d140ae7bb44e94c0afba2ec61456b275b The coding guidelines[1] in TF-A forbid the use of ato*() functions in favour of strto*(). However, the TF-A libc does not provide an implementation of strto*(), making this rule impossible to satisfy. Also made small changes to fit into TF-A project. Added the source files to the libc makefile [1] https://trustedfirmware-a.readthedocs.io/en/latest/process/coding-guidelines.html#libc-functions-that-are-banned-or-to-be-used-with-caution Change-Id: I9cb581574d46de73c3d6917ebf78935fc5ac075a Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
diff --git a/lib/libc/libc_asm.mk b/lib/libc/libc_asm.mk index e959687..e3f5c67 100644 --- a/lib/libc/libc_asm.mk +++ b/lib/libc/libc_asm.mk
@@ -27,6 +27,7 @@ strrchr.c \ strtok.c \ strtoul.c \ + strtoll.c \ strtol.c) ifeq (${ARCH},aarch64)