summaryrefslogtreecommitdiff
path: root/include/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/util.h')
-rw-r--r--include/util.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/util.h b/include/util.h
index ffb4c0e10d..17c1b3aed8 100644
--- a/include/util.h
+++ b/include/util.h
@@ -125,10 +125,7 @@ int strncmp(const char *s1, const char *s2, size_t n);
/* Like strtol(), but for integers. */
int strtoi(const char *nptr, char **endptr, int base);
-/* TODO(b/172592963): This should be unsigned long, and conflicts with Zephyr */
-#ifndef CONFIG_ZEPHYR
unsigned long long int strtoull(const char *nptr, char **endptr, int base);
-#endif
/* Like strncpy(), but guarantees null termination. */
char *strzcpy(char *dest, const char *src, int len);