summaryrefslogtreecommitdiff
path: root/lib/libc/stdtime/asctime.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdtime/asctime.c')
-rw-r--r--lib/libc/stdtime/asctime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdtime/asctime.c b/lib/libc/stdtime/asctime.c
index d6e02b8324fa..06df9a720e9e 100644
--- a/lib/libc/stdtime/asctime.c
+++ b/lib/libc/stdtime/asctime.c
@@ -51,8 +51,8 @@ char *result;
** three explicit spaces, two explicit colons, a newline,
** and a trailing ASCII nul).
*/
- register const char * wn;
- register const char * mn;
+ const char * wn;
+ const char * mn;
if (timeptr->tm_wday < 0 || timeptr->tm_wday >= DAYSPERWEEK)
wn = "???";