aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMadhukar Pappireddy <madhukar.pappireddy@arm.com>2021-01-27 15:44:52 -0600
committerMadhukar Pappireddy <madhukar.pappireddy@arm.com>2021-02-03 10:36:33 -0600
commit15c1c14735c28b03c540fdb00aa44b208e3b01eb (patch)
tree58fbea42170b8db4778787a22994f86a2c5059fb /include
parent015240d9d35c88d4f5c2845e8b8bfceb6d25dd9d (diff)
downloadplatform_external_arm-trusted-firmware-15c1c14735c28b03c540fdb00aa44b208e3b01eb.tar.gz
platform_external_arm-trusted-firmware-15c1c14735c28b03c540fdb00aa44b208e3b01eb.tar.bz2
platform_external_arm-trusted-firmware-15c1c14735c28b03c540fdb00aa44b208e3b01eb.zip
libc: Import strtoul 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: I8c3b92751d1ce226c966f7c81fedd83f0846865e Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
Diffstat (limited to 'include')
-rw-r--r--include/lib/libc/stdlib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lib/libc/stdlib.h b/include/lib/libc/stdlib.h
index b4a14e87f..3b5e9157e 100644
--- a/include/lib/libc/stdlib.h
+++ b/include/lib/libc/stdlib.h
@@ -26,4 +26,5 @@ extern int atexit(void (*func)(void));
extern void exit(int status);
long strtol(const char *nptr, char **endptr, int base);
+unsigned long strtoul(const char *nptr, char **endptr, int base);
#endif /* STDLIB_H */