From 589dc72e2aa4ff59037e1b0125604d55aca7b5b7 Mon Sep 17 00:00:00 2001 From: drepper Date: Fri, 17 Mar 1995 15:36:53 +0000 Subject: [PATCH] (atol): use __strtol_internal. --- stdlib/atol.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stdlib/atol.c b/stdlib/atol.c index 75f599c107..dd68ce0b74 100644 --- a/stdlib/atol.c +++ b/stdlib/atol.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 #include #undef atol @@ -24,7 +23,8 @@ Cambridge, MA 02139, USA. */ /* Convert a string to a long int. */ long int -DEFUN(atol, (nptr), CONST char *nptr) +atol (nptr) + const char *nptr; { - return(strtol(nptr, (char **) NULL, 10)); + return __strtol_internal (nptr, (char **) NULL, 10, 0); } -- 2.11.0