diff options
Diffstat (limited to 'stdlib/tst-strtol.c')
-rw-r--r-- | stdlib/tst-strtol.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/tst-strtol.c b/stdlib/tst-strtol.c index f569e55092..eebd8f7afa 100644 --- a/stdlib/tst-strtol.c +++ b/stdlib/tst-strtol.c @@ -537,14 +537,14 @@ static void expand (char *dst, int c); int main (void) { - register const struct ltest *lt; + const struct ltest *lt; char *ep; int status = 0; int save_errno; for (lt = tests; lt->str != NULL; ++lt) { - register long int l; + long int l; errno = 0; l = strtol (lt->str, &ep, lt->base); @@ -577,7 +577,7 @@ main (void) for (++lt; lt->str != NULL; lt++) { - register unsigned long int ul; + unsigned long int ul; errno = 0; ul = strtoul (lt->str, &ep, lt->base); |