summaryrefslogtreecommitdiff
path: root/missing_d/strtod.c
diff options
context:
space:
mode:
Diffstat (limited to 'missing_d/strtod.c')
-rw-r--r--missing_d/strtod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/missing_d/strtod.c b/missing_d/strtod.c
index c4f9d2bd..570f6407 100644
--- a/missing_d/strtod.c
+++ b/missing_d/strtod.c
@@ -40,8 +40,8 @@ extern double atof();
double
gawk_strtod(s, ptr)
-register const char *s;
-register const char **ptr;
+const char *s;
+const char **ptr;
{
const char *start = s; /* save original start of string */
const char *begin = NULL; /* where the number really begins */