No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / diffutils / lib / strtoull.c
blobae7986bb3d8df4614968c828452f022b1a79c0ff
1 /* $NetBSD$ */
3 /* Function to parse an `unsigned long long int' from text.
4 Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
5 NOTE: The canonical source of this file is maintained with the GNU C
6 Library. Bugs can be reported to bug-glibc@gnu.org.
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
11 later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software Foundation,
20 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 #define QUAD 1
24 #include "strtoul.c"
26 #ifdef _LIBC
27 strong_alias (__strtoull_internal, __strtouq_internal)
28 weak_alias (strtoull, strtouq)
29 #endif