aboutsummaryrefslogtreecommitdiff
path: root/stdlib/strtoull_l.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/strtoull_l.c')
-rw-r--r--stdlib/strtoull_l.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/stdlib/strtoull_l.c b/stdlib/strtoull_l.c
index ef102ddf16..2be400799c 100644
--- a/stdlib/strtoull_l.c
+++ b/stdlib/strtoull_l.c
@@ -19,9 +19,14 @@
#define QUAD 1
#define UNSIGNED 1
+#include <features.h>
+#undef __GLIBC_USE_C2X_STRTOL
+#define __GLIBC_USE_C2X_STRTOL 0
#include <locale.h>
+#include <stdbool.h>
extern unsigned long long int ____strtoull_l_internal (const char *, char **,
- int, int, locale_t);
+ int, int, bool,
+ locale_t);
#include <strtol_l.c>