diff options
author | Roland McGrath <roland@gnu.org> | 1996-01-27 10:00:24 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-01-27 10:00:24 +0000 |
commit | eb8c0f2de5fe3484a8c9922573c46e3789028bb0 (patch) | |
tree | d79786dec10621a484ebf6b0f18a865ca1ddb3a8 | |
parent | 8dad333dcef9dc1116277b98987a42a1b38f74ea (diff) | |
download | glibc-eb8c0f2de5fe3484a8c9922573c46e3789028bb0.zip glibc-eb8c0f2de5fe3484a8c9922573c46e3789028bb0.tar.gz glibc-eb8c0f2de5fe3484a8c9922573c46e3789028bb0.tar.bz2 |
Fri Jan 26 12:20:45 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>cvs/libc-960128cvs/libc-960127
* stdlib/strtol.c: Undo last change. ANSI C changed since the
draft I checked yesterday. Sigh.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | stdlib/strtol.c | 8 |
2 files changed, 6 insertions, 7 deletions
@@ -1,3 +1,8 @@ +Fri Jan 26 12:20:45 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu> + + * stdlib/strtol.c: Undo last change. ANSI C changed since the + draft I checked yesterday. Sigh. + Thu Jan 25 18:58:25 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu> * stdlib/strtol.c [UNSIGNED]: Don't recognize + or - as sign. diff --git a/stdlib/strtol.c b/stdlib/strtol.c index 2996603..b06063c 100644 --- a/stdlib/strtol.c +++ b/stdlib/strtol.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1994, 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1994, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -112,11 +112,7 @@ INTERNAL (strtol) (nptr, endptr, base, group) int base; int group; { -#if UNSIGNED -#define negative 0 -#else int negative; -#endif register unsigned LONG int cutoff; register unsigned int cutlim; register unsigned LONG int i; @@ -162,7 +158,6 @@ INTERNAL (strtol) (nptr, endptr, base, group) if (*s == '\0') goto noconv; -#if !UNSIGNED /* Check for a sign. */ if (*s == '-') { @@ -176,7 +171,6 @@ INTERNAL (strtol) (nptr, endptr, base, group) } else negative = 0; -#endif if (base == 16 && s[0] == '0' && toupper (s[1]) == 'X') s += 2; |