Skip to content

Commit

Permalink
Undo bogus change by drepper
Browse files Browse the repository at this point in the history
  • Loading branch information
Roland McGrath committed Mar 17, 1995
1 parent b3fe135 commit 04282ed
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 20 deletions.
8 changes: 4 additions & 4 deletions stdlib/atof.c
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -16,15 +16,15 @@ 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 atof


/* 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));
}
8 changes: 4 additions & 4 deletions stdlib/atoi.c
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -16,15 +16,15 @@ 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


/* 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));
}
8 changes: 4 additions & 4 deletions stdlib/atol.c
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -16,15 +16,15 @@ 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


/* 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));
}
12 changes: 4 additions & 8 deletions stdlib/strtod.c
Original file line number Diff line number Diff line change
Expand Up @@ -405,13 +405,9 @@ INTERNAL (STRTOF) (nptr, endptr, group)
Return current read pointer. */
if (!isdigit (c) && c != decimal)
{
if (grouping)
/* Check the grouping of the digits. */
tp = correctly_grouped_prefix (start_of_digits, cp, thousands,
grouping);
else
tp = cp;

tp = correctly_grouped_prefix (start_of_digits, cp, thousands, grouping);
/* If TP is at the start of the digits, there was no correctly
grouped prefix of the string; so no number found. */
RETURN (0.0, tp == start_of_digits ? nptr : tp);
}

Expand Down Expand Up @@ -558,7 +554,7 @@ INTERNAL (STRTOF) (nptr, endptr, group)
assert (dig_no >= int_no);
}

number_parsed:
number_parsed:

/* The whole string is parsed. Store the address of the next character. */
if (endptr)
Expand Down

0 comments on commit 04282ed

Please sign in to comment.