Skip to content
Snippets Groups Projects
Commit 03199814 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

bugfix

Rev: src/port.c:1.24
parent 8c68a92c
Branches
Tags
No related merge requests found
......@@ -17,7 +17,7 @@
#include <float.h>
#include <string.h>
RCSID("$Id: port.c,v 1.23 2000/06/08 22:06:47 hubbe Exp $");
RCSID("$Id: port.c,v 1.24 2000/06/20 03:26:53 hubbe Exp $");
#ifdef sun
time_t time PROT((time_t *));
......@@ -402,11 +402,6 @@ double STRTOD(char * nptr, char **endptr)
/* Eat whitespace. */
while (ISSPACE(*s)) ++s;
/* Get the sign. */
sign = *s == '-' ? -1 : 1;
if (*s == '-' || *s == '+')
++s;
/* Get the sign. */
sign = *s == '-' ? -1 : 1;
if (*s == '-' || *s == '+')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment