Blame lib/strtoull.c

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