diff options
author | Roland McGrath <roland@gnu.org> | 1995-03-17 17:40:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-03-17 17:40:02 +0000 |
commit | 04282ed1ddcb6bf566632146a45ce02b152592da (patch) | |
tree | e017f97c4bd2892f8f450a679f9c02255cd787c8 /stdlib/atol.c | |
parent | b3fe1350509737887ab1f2ac8c4efb547af80b58 (diff) | |
download | glibc-04282ed1ddcb6bf566632146a45ce02b152592da.tar glibc-04282ed1ddcb6bf566632146a45ce02b152592da.tar.gz glibc-04282ed1ddcb6bf566632146a45ce02b152592da.tar.bz2 glibc-04282ed1ddcb6bf566632146a45ce02b152592da.zip |
Undo bogus change by drepper
Diffstat (limited to 'stdlib/atol.c')
-rw-r--r-- | stdlib/atol.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/atol.c b/stdlib/atol.c index dd68ce0b74..75f599c107 100644 --- a/stdlib/atol.c +++ b/stdlib/atol.c @@ -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 atol @@ -23,8 +24,7 @@ Cambridge, MA 02139, USA. */ /* Convert a string to a long int. */ long int -atol (nptr) - const char *nptr; +DEFUN(atol, (nptr), CONST char *nptr) { - return __strtol_internal (nptr, (char **) NULL, 10, 0); + return(strtol(nptr, (char **) NULL, 10)); } |