diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2011-05-27 15:31:52 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2011-07-07 22:29:53 +0200 |
commit | c3c827cf864b10d5086177602f0157b9596bc380 (patch) | |
tree | 41144239b4eac513147918cbb24cf22ed6c68411 /payloads/libpayload/libc | |
parent | 163e220c5d9a8f52bd4f195c9dc456233fa23d11 (diff) |
libpayload: Provide atol(), malloc.h
Change-Id: I807ca061115146a6851eef481eb881b279fba8e1
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/86
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads/libpayload/libc')
-rw-r--r-- | payloads/libpayload/libc/string.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/payloads/libpayload/libc/string.c b/payloads/libpayload/libc/string.c index 2e0a558b20..8c6ea99115 100644 --- a/payloads/libpayload/libc/string.c +++ b/payloads/libpayload/libc/string.c @@ -473,6 +473,11 @@ long int strtol(const char *ptr, char **endptr, int base) return ret * negative; } +long atol(const char *nptr) +{ + return strtol(nptr, NULL, 10); +} + /** * Convert the initial portion of a string into an unsigned int * @param ptr A pointer to the string to convert |