From 04282ed1ddcb6bf566632146a45ce02b152592da Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 17 Mar 1995 17:40:02 +0000 Subject: Undo bogus change by drepper --- stdlib/atof.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'stdlib/atof.c') diff --git a/stdlib/atof.c b/stdlib/atof.c index a4b7eb92bd..79585464d1 100644 --- a/stdlib/atof.c +++ b/stdlib/atof.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 #include #undef atof @@ -23,8 +24,7 @@ Cambridge, MA 02139, USA. */ /* Convert a string to a double. */ double -atof (nptr) - const char *nptr; +DEFUN(atof, (nptr), CONST char *nptr) { - return __strtod_internal (nptr, (char **) NULL, 0); + return(strtod(nptr, (char **) NULL)); } -- cgit v1.2.3