]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - stdlib/strtoll_l.c
stdlib: Tune down fork arc4random tests
[thirdparty/glibc.git] / stdlib / strtoll_l.c
index 93548d08d029afadc495e819ffdfff4da5d74cd6..e4a3ac052fa1e63ec49af1aab088a91304bd6ffb 100644 (file)
@@ -1,7 +1,6 @@
 /* Convert string representing a number to integer value, using given locale.
-   Copyright (C) 1997-2017 Free Software Foundation, Inc.
+   Copyright (C) 1997-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
-   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
    The GNU C Library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #define QUAD   1
 
+#include <features.h>
+#undef __GLIBC_USE_C2X_STRTOL
+#define __GLIBC_USE_C2X_STRTOL 0
 #include <locale.h>
+#include <stdbool.h>
 
 extern long long int ____strtoll_l_internal (const char *, char **, int, int,
-                                            locale_t);
+                                            bool, locale_t);
 
 #include <strtol_l.c>