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