diff options
Diffstat (limited to 'compat/fixstrtod.c')
| -rw-r--r-- | compat/fixstrtod.c | 10 | 
1 files changed, 4 insertions, 6 deletions
diff --git a/compat/fixstrtod.c b/compat/fixstrtod.c index 165b7d1..91f309e 100644 --- a/compat/fixstrtod.c +++ b/compat/fixstrtod.c @@ -9,8 +9,6 @@   *   * See the file "license.terms" for information on usage and redistribution   * of this file, and for a DISCLAIMER OF ALL WARRANTIES. - * - * RCS: @(#) $Id: fixstrtod.c,v 1.2 1998/09/14 18:39:44 stanton Exp $   */  #include <stdio.h> @@ -22,12 +20,12 @@   * somes systems (e.g. SunOS 4.1.4) stdlib.h doesn't declare strtod.   */ -extern double strtod(); +extern double strtod(char *, char **);  double -fixstrtod(string, endPtr) -    char *string; -    char **endPtr; +fixstrtod( +    char *string, +    char **endPtr)  {      double d;      d = strtod(string, endPtr);  | 
