~ubuntu-branches/debian/sid/dico/sid

« back to all changes in this revision

Viewing changes to gnu/strtoull.c

  • Committer: Bazaar Package Importer
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2009-04-03 06:28:25 UTC
  • Revision ID: james.westby@ubuntu.com-20090403062825-n4tbn09hv9ve5s2s
Tags: upstream-2.0
Import upstream version 2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- buffer-read-only: t -*- vi: set ro: */
 
2
/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 
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.
 
7
 
 
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 3 of the License, or any
 
11
   later version.
 
12
 
 
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.
 
17
 
 
18
   You should have received a copy of the GNU General Public License
 
19
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
20
 
 
21
#define QUAD 1
 
22
 
 
23
#include "strtoul.c"
 
24
 
 
25
#ifdef _LIBC
 
26
strong_alias (__strtoull_internal, __strtouq_internal)
 
27
weak_alias (strtoull, strtouq)
 
28
#endif