]> code.delx.au - gnu-emacs/blob - lib/strtoull.c
Update copyright year to 2015
[gnu-emacs] / lib / strtoull.c
1 /* Function to parse an 'unsigned long long int' from text.
2 Copyright (C) 1995-1997, 1999, 2009-2015 Free Software Foundation,
3 Inc.
4 NOTE: The canonical source of this file is maintained with the GNU C
5 Library. Bugs can be reported to bug-glibc@gnu.org.
6
7 This program is free software: you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or any
10 later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #define QUAD 1
21
22 #include "strtoul.c"
23
24 #ifdef _LIBC
25 strong_alias (__strtoull_internal, __strtouq_internal)
26 weak_alias (strtoull, strtouq)
27 #endif