summaryrefslogtreecommitdiffstats
path: root/compat/fixstrtod.c
diff options
context:
space:
mode:
Diffstat (limited to 'compat/fixstrtod.c')
-rw-r--r--compat/fixstrtod.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/compat/fixstrtod.c b/compat/fixstrtod.c
index ba1a480..91f309e 100644
--- a/compat/fixstrtod.c
+++ b/compat/fixstrtod.c
@@ -20,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);