From d56b957c2104f624994d5f20fdaa989079c06a6f Mon Sep 17 00:00:00 2001 From: Madhukar Pappireddy Date: Wed, 27 Jan 2021 19:12:33 -0600 Subject: libc: Import strtoull 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: I2e94a0b227ec39f6f4530dc50bb477999d27730f Signed-off-by: Madhukar Pappireddy --- include/lib/libc/stdlib.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/lib/libc/stdlib.h') diff --git a/include/lib/libc/stdlib.h b/include/lib/libc/stdlib.h index a0354fabc..4641e566e 100644 --- a/include/lib/libc/stdlib.h +++ b/include/lib/libc/stdlib.h @@ -28,4 +28,5 @@ extern void exit(int status); long strtol(const char *nptr, char **endptr, int base); unsigned long strtoul(const char *nptr, char **endptr, int base); long long strtoll(const char *nptr, char **endptr, int base); +unsigned long long strtoull(const char *nptr, char **endptr, int base); #endif /* STDLIB_H */ -- cgit v1.2.3