musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdlib/strtoull.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/strtoull.c')
-rw-r--r--src/stdlib/strtoull.c 7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/stdlib/strtoull.c b/src/stdlib/strtoull.c
index 20aa7bde..5d1c4ee5 100644
--- a/src/stdlib/strtoull.c
+++ b/src/stdlib/strtoull.c
@@ -5,8 +5,11 @@
unsigned long long strtoull(const char *s, char **p, int base)
{
- uintmax_t x = strtoumax(s, p, base);
- if (x > ULLONG_MAX) {
+ intmax_t x;
+ if (sizeof(intmax_t) == sizeof(long long))
+ return strtoumax(s, p, base);
+ x = strtoimax(s, p, base);
+ if (-x > ULLONG_MAX || x > ULLONG_MAX) {
errno = ERANGE;
return ULLONG_MAX;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月06日 05:34:41 +0000

AltStyle によって変換されたページ (->オリジナル) /