X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fxstrtol.c;h=07023d9ffdb74e8557ced00a37d7a0d5a52826ac;hb=618f09f72ba36d7c43802fa5fc07aca28172e6fd;hp=0b91ed72327d71a9bd594237c4a55742c58bc891;hpb=c52f4d0c41899100db967176f1c983c01fe9786a;p=gnulib.git diff --git a/lib/xstrtol.c b/lib/xstrtol.c index 0b91ed723..07023d9ff 100644 --- a/lib/xstrtol.c +++ b/lib/xstrtol.c @@ -1,5 +1,5 @@ /* A more useful interface to strtol. - Copyright 1995, 1996, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1998-2000 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 @@ -78,7 +78,17 @@ extern int errno; #include "xstrtol.h" -__strtol_t __strtol (); +#ifndef strtol +long int strtol (); +#endif + +#ifndef strtoul +unsigned long int strtoul (); +#endif + +#ifndef strtoumax +uintmax_t strtoumax (); +#endif static int bkm_scale (__strtol_t *x, int scale_factor)