aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMadhukar Pappireddy <madhukar.pappireddy@arm.com>2021-02-11 16:04:54 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2021-02-11 16:04:54 +0000
commit94b0c3341ee5d83adc6e5b6592a9f88b313c9cb7 (patch)
treeaa2278ad9f452c8fdd33a1680aa182854b9af728 /include
parentedbe490baa056352c2561d219856f31679e06152 (diff)
parentd56b957c2104f624994d5f20fdaa989079c06a6f (diff)
downloadtrusted-firmware-a-94b0c3341ee5d83adc6e5b6592a9f88b313c9cb7.tar.gz
Merge changes from topic "mp/strto_libc" into integration
* changes: libc: Import strtoull from FreeBSD project libc: Import strtoll from FreeBSD project libc: Import strtoul from FreeBSD project libc: Import strtol from FreeBSD project
Diffstat (limited to 'include')
-rw-r--r--include/lib/libc/stdlib.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/lib/libc/stdlib.h b/include/lib/libc/stdlib.h
index 24e7bae2f8..4641e566e7 100644
--- a/include/lib/libc/stdlib.h
+++ b/include/lib/libc/stdlib.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012-2017 Roberto E. Vargas Caballero
+ * Copyright (c) 2012-2021 Roberto E. Vargas Caballero
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -18,8 +18,15 @@
#define _ATEXIT_MAX 1
+#define isspace(x) (((x) == ' ') || ((x) == '\r') || ((x) == '\n') || \
+ ((x) == '\t') || ((x) == '\b'))
+
extern void abort(void);
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);
+long long strtoll(const char *nptr, char **endptr, int base);
+unsigned long long strtoull(const char *nptr, char **endptr, int base);
#endif /* STDLIB_H */