diff options
Diffstat (limited to 'stdlib/strtoul_l.c')
-rw-r--r-- | stdlib/strtoul_l.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/stdlib/strtoul_l.c b/stdlib/strtoul_l.c index f1bd050..a92a5ce 100644 --- a/stdlib/strtoul_l.c +++ b/stdlib/strtoul_l.c @@ -18,9 +18,13 @@ #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 int ____strtoul_l_internal (const char *, char **, int, - int, locale_t); + int, bool, locale_t); #include "strtol_l.c" |