diff options
Diffstat (limited to 'stdlib/atoi.c')
-rw-r--r-- | stdlib/atoi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/atoi.c b/stdlib/atoi.c index 9fe280cc3e..df053710f3 100644 --- a/stdlib/atoi.c +++ b/stdlib/atoi.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,7 +16,6 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <ansidecl.h> #include <stdlib.h> #undef atoi @@ -24,7 +23,8 @@ Cambridge, MA 02139, USA. */ /* Convert a string to an int. */ int -DEFUN(atoi, (nptr), CONST char *nptr) +atoi (nptr) + const char *nptr; { - return((int) strtol(nptr, (char **) NULL, 10)); + return (int) __strtol_internal (nptr, (char **) NULL, 10, 0); } |