diff options
author | Tim J. Robbins <tjr@FreeBSD.org> | 2004-07-04 09:52:08 +0000 |
---|---|---|
committer | Tim J. Robbins <tjr@FreeBSD.org> | 2004-07-04 09:52:08 +0000 |
commit | 6fdbbb54872ec7fac83387296f0165f7ad3400a9 (patch) | |
tree | 70ffe417c9436d51a3807610738f2a5993f7f0fc /gnu/usr.bin/grep/xstrtoumax.c | |
parent | 7a39f4da90d53085484e72b7504a3e53dbc9f051 (diff) |
Notes
Diffstat (limited to 'gnu/usr.bin/grep/xstrtoumax.c')
-rw-r--r-- | gnu/usr.bin/grep/xstrtoumax.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/usr.bin/grep/xstrtoumax.c b/gnu/usr.bin/grep/xstrtoumax.c new file mode 100644 index 0000000000000..04d7cf98ae4c8 --- /dev/null +++ b/gnu/usr.bin/grep/xstrtoumax.c @@ -0,0 +1,31 @@ +/* xstrtoumax.c -- A more useful interface to strtoumax. + Copyright 1999 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +/* Written by Paul Eggert. */ + +#if HAVE_CONFIG_H +# include <config.h> +#endif + +#if HAVE_INTTYPES_H +# include <inttypes.h> +#endif + +#define __strtol strtoumax +#define __strtol_t uintmax_t +#define __xstrtol xstrtoumax +#include "xstrtol.c" |