Blame lib/strtoull.c

Packit 33f14e
/* Function to parse an 'unsigned long long int' from text.
Packit 33f14e
   Copyright (C) 1995-1997, 1999, 2009-2017 Free Software Foundation, Inc.
Packit 33f14e
   NOTE: The canonical source of this file is maintained with the GNU C
Packit 33f14e
   Library.  Bugs can be reported to bug-glibc@gnu.org.
Packit 33f14e
Packit 33f14e
   This program is free software: you can redistribute it and/or modify it
Packit 33f14e
   under the terms of the GNU General Public License as published by the
Packit 33f14e
   Free Software Foundation; either version 3 of the License, or any
Packit 33f14e
   later version.
Packit 33f14e
Packit 33f14e
   This program is distributed in the hope that it will be useful,
Packit 33f14e
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 33f14e
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 33f14e
   GNU General Public License for more details.
Packit 33f14e
Packit 33f14e
   You should have received a copy of the GNU General Public License
Packit 33f14e
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit 33f14e
Packit 33f14e
#define QUAD 1
Packit 33f14e
Packit 33f14e
#include "strtoul.c"
Packit 33f14e
Packit 33f14e
#ifdef _LIBC
Packit 33f14e
strong_alias (__strtoull_internal, __strtouq_internal)
Packit 33f14e
weak_alias (strtoull, strtouq)
Packit 33f14e
#endif