summaryrefslogtreecommitdiff
path: root/lib/libc/string/swab.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/string/swab.c')
-rw-r--r--lib/libc/string/swab.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/string/swab.c b/lib/libc/string/swab.c
index 22710dfd7338..70da36f2c057 100644
--- a/lib/libc/string/swab.c
+++ b/lib/libc/string/swab.c
@@ -48,9 +48,9 @@ swab(from, to, len)
void *to;
size_t len;
{
- register unsigned long temp;
- register int n;
- register char *fp, *tp;
+ unsigned long temp;
+ int n;
+ char *fp, *tp;
n = (len >> 1) + 1;
fp = (char *)from;