1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Undo bogus change by drepper

This commit is contained in:
Roland McGrath
1995-03-17 17:40:02 +00:00
parent b3fe135050
commit 04282ed1dd
4 changed files with 16 additions and 20 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1995 Free Software Foundation, Inc.
/* Copyright (C) 1991 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,6 +16,7 @@ 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
@ -23,8 +24,7 @@ Cambridge, MA 02139, USA. */
/* Convert a string to an int. */
int
atoi (nptr)
const char *nptr;
DEFUN(atoi, (nptr), CONST char *nptr)
{
return (int) __strtol_internal (nptr, (char **) NULL, 10, 0);
return((int) strtol(nptr, (char **) NULL, 10));
}