diff options
Diffstat (limited to 'strings/strto.c')
-rw-r--r-- | strings/strto.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/strings/strto.c b/strings/strto.c index 934b5d88e90..8255c38f52e 100644 --- a/strings/strto.c +++ b/strings/strto.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2000 MySQL AB +/* Copyright (c) 2000-2004, 2006, 2007 MySQL AB + Use is subject to license terms. 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 @@ -11,7 +12,8 @@ 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 */ + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ /* strtol,strtoul,strtoll,strtoull @@ -88,7 +90,7 @@ function (const char *nptr,char **endptr,int base) register unsigned int cutlim; register ulongtype i; register const char *s; - register unsigned char c; + register uchar c; const char *save; int overflow; |