source: vendor/bash/3.1/lib/sh/strtoll.c

Last change on this file was 3228, checked in by bird, 18 years ago

bash 3.1

File size: 901 bytes
Line 
1/* Copyright (C) 1997 Free Software Foundation, Inc.
2
3This program is free software; you can redistribute it and/or modify it
4under the terms of the GNU General Public License as published by the
5Free Software Foundation; either version 2, or (at your option) any
6later version.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program; if not, write to the Free Software Foundation,
15Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
16
17#include <config.h>
18
19#if defined (HAVE_LONG_LONG) && !defined (HAVE_STRTOLL)
20
21#define QUAD 1
22#undef HAVE_STRTOL
23
24#include "strtol.c"
25
26#endif /* HAVE_LONG_LONG && !HAVE_STRTOLL */
Note: See TracBrowser for help on using the repository browser.